Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for Edges (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // that was extracted..
    
      // Find the input edges to form the set of operands to the new function call.
      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!ops.contains(defining_op)) inputs.insert(operand);
        }
      }
      // Find the output edges to form the set of resutls of the new function call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/block.go

    	// The containing function
    	Func *Func
    
    	// Storage for Succs, Preds and Values.
    	succstorage [2]Edge
    	predstorage [4]Edge
    	valstorage  [9]*Value
    }
    
    // Edge represents a CFG edge.
    // Example edges for b branching to either c or d.
    // (c and d have other predecessors.)
    //
    //	b.Succs = [{c,3}, {d,1}]
    //	c.Preds = [?, ?, ?, {b,0}]
    //	d.Preds = [?, {b,1}, ?]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        if (stateless && stateless.getValue())
          *node_def->mutable_op() = "Stateless" + node_def->op();
      }
    
      // Add inputs to the NodeDef based on the number of operands. This is required
      // as later when edges are added to the Node using Graph::AddEdge the
      // associated NodeDef is not updated.
      for (int i = 0, e = inst->getNumOperands(); i < e; ++i) {
        node_def->add_input();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // that was extracted..
    
      // Find the input edges to form the set of operands to the new function call.
      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!ops.contains(defining_op)) inputs.insert(operand);
        }
      }
      // Find the output edges to form the set of resutls of the new function call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

              context, {mlir::StringAttr::get(context, signature->signature_key)}));
    }
    
    // There are control nodes at each end of each control edge. For each of them,
    // we store the source vertices of the incoming edges (if any) and the control
    // node's output token. To improve testability, we use an ordered set for the
    // source vertices.
    struct ControlNodeDesc {
      std::set<int> incoming;
      std::optional<mlir::Value> outgoing;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Populate the model control dependencies metadata entry.
      if (std::any_of(
              model_control_dependencies_.begin(),
              model_control_dependencies_.end(),
              [](const tflite::ControlEdges& edges) { return !edges.empty(); })) {
        metadata.push_back(
            BuildMetadata(tflite::kModelControlDependenciesMetadataKey,
                          tflite::SerializeModelControlDependencies(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		name           string
    		graph          trustGraphDescription
    		expectedChains []string
    		expectedErr    string
    	}{
    		{
    			// Build the following graph from RFC 4158, figure 7 (note that in this graph edges represent
    			// certificates where the parent is the issuer and the child is the subject.) For the certificate
    			// C->B, use an unsupported ExtKeyUsage (in this case ExtKeyUsageCodeSigning) which invalidates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util.cc

      options.arguments_are_tupled = false;
      options.untuple_result = true;
      // Hardcode run id to always be one: TF distributed strategy
      // differentiates between subsequent runs using dependency edges. This
      // is safe, as only TF dist-strat can produce distributed ops, and we
      // can rely on TF dist-strat invariants.
      options.launch_id = 1;
      // TODO(b/293186653): investigate we should turn on strict shape checking for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

                                 done);
          }
    
          // Hardcode run id to always be zero: TF distributed strategy
          // differentiates between subsequent runs using dependency edges. This
          // is safe, as only TF dist-strat can produce distributed ops, and we
          // can rely on TF dist-strat invariants.
          xla::RunId run_id(0);
          run_options.set_run_id(run_id);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
        XlaCompilationResult* compilation_result) {
      // Construct mapping from XlaComputation's arg to input edges of execute
      // node.
      GetInputMappingForMlir(arg_shapes.size(), &compilation_result->input_mapping);
    
      // Compute all input shapes.
      TF_RETURN_IF_ERROR(GetXlaInputShapes(module_op, arg_shapes, use_tuple_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top