Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 245 for populator (0.31 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

        }
      });
    
      // Populate the hardware metadata.
      // And collect the hardwares used.
      std::map<std::string, uint8_t> hardware_map;
      flatbuffers::Offset<tflite::HardwareMetadata> hardware_metadata_offset =
          CreateHardwareMetadataAndPopulateLookupTable(&funcs, &fb_builder,
                                                       &hardware_map);
    
      // Populate the runtime metadata.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      }
    
     private:
      // Runs the analysis and populates `sorted_control_predecessors_` and
      // `sorted_control_successors_` for `func_op`. Clears `control_predecessors_`.
      void AnalyzeFunction(func::FuncOp func_op);
    
      // Runs the analysis and populates `control_predecessors_` for `region`.
      void AnalyzeRegion(Region* region);
    
      // Runs the analysis and populates `control_predecessors_` for `op`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.h

    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace internal {
    
    // Register all custom ops including user specified custom ops.
    Status RegisterAllCustomOps(const toco::TocoFlags& toco_flags);
    
    // Populate quantization specs (or not) given user specified ranges for each
    // input arrays.
    Status PopulateQuantizationSpecs(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

     * Summary is populated by the deprecateX methods in this class.
     * Context can be added in free text using {@link DeprecationMessageBuilder#withContext(String)}.
     * Advice is constructed contextually using {@link DeprecationMessageBuilder.WithReplacement#replaceWith(Object)} methods based on the thing being deprecated.
     * Alternatively, it can be populated using {@link DeprecationMessageBuilder#withAdvice(String)}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller.go

    	// serviceLister is able to list/get services and is populated by the
    	// shared informer passed to NewController
    	serviceLister corelisters.ServiceLister
    	// servicesSynced returns true if the service shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

            inputs.push_back(none);
          }
        }
    
        // Populate outputs.
        // UnidirectionalSequenceLstm should only have 1 output, and that is the
        // original ophint converted node's 3rd output.
        SmallVector<Type, 4> result_types;
        result_types.push_back(op->getOpResult(2).getType());
    
        // Populate attributes.
        SmallVector<NamedAttribute, 4> attributes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    /// Adds the TF to TF lowerings and TF to XLA rewrite patterns to the pattern
    /// list.
    void PopulateLegalizeTfPatterns(MLIRContext* context,
                                    RewritePatternSet* patterns);
    
    // Populates TF to MHLO legalization for some of the quantization ops.
    //
    // TODO(hinsu): Remove this once we combine quantized and non quantized op
    // legalization in the ODML conversion pipeline.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	// DeprecatedGatewayNameLabel indicates the gateway managing a particular proxy instances. Only populated for Gateway API gateways
    	DeprecatedGatewayNameLabel = "istio.io/gateway-name"
    	// GatewayNameLabel indicates the gateway managing a particular proxy instances. Only populated for Gateway API gateways
    	GatewayNameLabel = "gateway.networking.k8s.io/gateway-name"
    
    	// TODO formalize this API
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. doc/README.md

    Atomically (as close to it as possible) add that file to `_content/doc` directory
    of the website repository and remove the `doc/next` directory in this repository.
    
    To begin the next release development cycle, populate the contents of `next`
    with those of `initial`. From the repo root:
    
        > cd doc
        > cp -r initial/* next
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    }
    
    // A loadPkg records information about a single loaded package.
    type loadPkg struct {
    	// Populated at construction time:
    	path   string // import path
    	testOf *loadPkg
    
    	// Populated at construction time and updated by (*loader).applyPkgFlags:
    	flags atomicLoadPkgFlags
    
    	// Populated by (*loader).load:
    	mod         module.Version // module providing package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top