GraphOptions

classe final pública GraphOptions

Tipo de protobuf tensorflow.GraphOptions

Classes aninhadas

aula GraphOptions.Builder Tipo de protobuf tensorflow.GraphOptions

Constantes

interno BUILD_COST_MODEL_AFTER_FIELD_NUMBER
interno BUILD_COST_MODEL_FIELD_NUMBER
interno ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER
interno ENABLE_RECV_SCHEDULING_FIELD_NUMBER
interno INFER_SHAPES_FIELD_NUMBER
interno OPTIMIZER_OPTIONS_FIELD_NUMBER
interno PLACE_PRUNED_GRAPH_FIELD_NUMBER
interno REWRITE_OPTIONS_FIELD_NUMBER
interno TIMELINE_STEP_FIELD_NUMBER

Métodos Públicos

boleano
é igual (objeto obj)
longo
getBuildCostModel ()
 The number of steps to run before returning a cost model detailing
 the memory usage and performance of each node of the graph.
longo
getBuildCostModelAfter ()
 The number of steps to skip before collecting statistics for the
 cost model.
Opções gráficas estáticas
Opções de gráfico
final estático com.google.protobuf.Descriptors.Descriptor
boleano
getEnableBfloat16Sendrecv ()
 If true, transfer float values between processes as bfloat16.
boleano
getEnableRecvScheduling ()
 If true, use control flow to schedule the activation of Recv nodes.
boleano
obterInferShapes ()
 Annotate each Node with Op output shape data, to the extent it can
 be statically inferred.
Opções do otimizador
getOptimizerOptions ()
 Options controlling how graph is optimized.
OptimizerOptionsOrBuilder
getOptimizerOptionsOrBuilder ()
 Options controlling how graph is optimized.
boleano
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.
interno
interno
getTimelineStep ()
 If > 0, record a timeline every this many steps.
final com.google.protobuf.UnknownFieldSet
boleano
hasOptimizerOptions ()
 Options controlling how graph is optimized.
boleano
hasRewriteOptions ()
 Options that control the type and amount of graph rewriting.
interno
booleano final
GraphOptions.Builder estático
GraphOptions.Builder estático
newBuilder (protótipo GraphOptions )
GraphOptions.Builder
Opções gráficas estáticas
parseDelimitedFrom (entrada InputStream)
Opções gráficas estáticas
parseDelimitedFrom (entrada InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Opções gráficas estáticas
parseFrom (dados de ByteBuffer)
Opções gráficas estáticas
parseFrom (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Opções gráficas estáticas
parseFrom (dados de ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Opções gráficas estáticas
parseFrom (entrada com.google.protobuf.CodedInputStream)
Opções gráficas estáticas
parseFrom (byte[] dados, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Opções gráficas estáticas
parseFrom (dados com.google.protobuf.ByteString)
Opções gráficas estáticas
parseFrom (entrada InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
Opções gráficas estáticas
parseFrom (dados com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
estático
GraphOptions.Builder
vazio
writeTo (saída com.google.protobuf.CodedOutputStream)

Métodos herdados

Constantes

int final estático público BUILD_COST_MODEL_AFTER_FIELD_NUMBER

Valor Constante: 9

int final estático público BUILD_COST_MODEL_FIELD_NUMBER

Valor Constante: 4

público estático final int ENABLE_BFLOAT16_SENDRECV_FIELD_NUMBER

Valor Constante: 7

público estático final int ENABLE_RECV_SCHEDULING_FIELD_NUMBER

Valor Constante: 2

público estático final int INFER_SHAPES_FIELD_NUMBER

Valor Constante: 5

público estático final int OPTIMIZER_OPTIONS_FIELD_NUMBER

Valor Constante: 3

int final estático público PLACE_PRUNED_GRAPH_FIELD_NUMBER

Valor Constante: 6

público estático final int REWRITE_OPTIONS_FIELD_NUMBER

Valor Constante: 10

público estático final int TIMELINE_STEP_FIELD_NUMBER

Valor Constante: 8

Métodos Públicos

booleano público é igual (Object obj)

público longo 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;

público longo getBuildCostModelAfter ()

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

GraphOptions estáticos públicos getDefaultInstance ()

GraphOptions públicas getDefaultInstanceForType ()

final estático público com.google.protobuf.Descriptors.Descriptor getDescriptor ()

público booleano getEnableBfloat16Sendrecv ()

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

getEnableRecvScheduling booleano público ()

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

getInferShapes booleano público ()

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

public OptimizerOptionsgetOptimizerOptions ( )

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

public OptimizerOptionsOrBuilder getOptimizerOptionsOrBuilder ()

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

público getParserForType ()

getPlacePrunedGraph booleano público ()

 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;

public 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;

public 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;

público int getSerializedSize ()

público int getTimelineStep ()

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

final público com.google.protobuf.UnknownFieldSet getUnknownFields ()

hasOptimizerOptions booleano público ()

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

hasRewriteOptions booleano público ()

 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;

hashCode int público ()

público final booleano isInitialized ()

público estático GraphOptions.Builder newBuilder ()

public static GraphOptions.Builder newBuilder (protótipo GraphOptions )

público GraphOptions.Builder newBuilderForType ()

public static GraphOptions parseDelimitedFrom (entrada InputStream)

Lança
IOException

public static GraphOptions parseDelimitedFrom (entrada InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
IOException

public static GraphOptions parseFrom (dados ByteBuffer)

Lança
InvalidProtocolBufferException

public static GraphOptions parseFrom (entrada com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
IOException

public static GraphOptions parseFrom (dados ByteBuffer, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
InvalidProtocolBufferException

public static GraphOptions parseFrom (entrada com.google.protobuf.CodedInputStream)

Lança
IOException

public static GraphOptions parseFrom (byte[] dados, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
InvalidProtocolBufferException

público estático GraphOptions parseFrom (dados com.google.protobuf.ByteString)

Lança
InvalidProtocolBufferException

public static GraphOptions parseFrom (entrada InputStream, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
IOException

public static GraphOptions parseFrom (dados com.google.protobuf.ByteString, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

Lança
InvalidProtocolBufferException

estática pública analisador ()

público GraphOptions.Builder toBuilder ()

public void writeTo (saída com.google.protobuf.CodedOutputStream)

Lança
IOException