Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for feedsif (0.11 sec)

  1. tensorflow/cc/saved_model/loader.cc

    // leaving behind non-GC'ed state.
    //
    // Detailed motivation behind this approach, from ashankar@:
    //
    // Each call to Session::Run() that identifies a new subgraph (based on feeds
    // and fetches) creates some datastructures that live as long as the session
    // (the partitioned graph, associated executors etc.).
    //
    // A pathological case of this would be if say the initialization op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        (like `tf.Add`) they must be wrapped in the `tf_executor.island` operation.
    
        The `tf_executor.graph` operation does not accept any operands, inputs are
        implicitly captured by the region, representing the feeds to the graph.
    
        The region attached to `tf_executor.graph` is terminated by a
        `tf_executor.fetch` operation. The operands of the terminator correspond to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          std::unordered_map<string, Node*>* node_name_map);
    
      // Prune nodes that do not feed into fetch nodes.
      Status PruneUnreachableNodes(
          std::unordered_map<string, Node*>* node_name_map);
    
      // Converts feeds to Placeholder nodes.
      Status ConvertFeedsToPlaceholders(
          std::unordered_map<string, Node*>* node_name_map);
    
      // Converts the inferred shape referred to by 'handle' in 'context', with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      // _Arg nodes in a top-level function represent feeds and _Retval nodes in a
      // top-level function represent fetches.
      if (stack_depth == 1 &&
          (node.type_string() == "_Arg" || node.type_string() == "_Retval")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // IfRegion or WhileRegion ops that need to converted.
      worklist.push_back(outlined_func);
      return outlined_func.getName();
    }
    
    // Returns call for region with single call whose result feeds into the
    // terminator of the region. If `allow_to_bool` is true, it allows patterns used
    // in the condition of While ops, i.e. it allows a single bool (possibly passed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    		syscallingP: make(map[ProcID]GoID),
    		syscallingG: make(map[GoID]ProcID),
    		rangesP:     make(map[rangeP]GoID),
    	}
    }
    
    type rangeP struct {
    	id   ProcID
    	name string
    }
    
    // Event feeds a single event into the stats summarizer.
    func (s *Summarizer) Event(ev *Event) {
    	if s.syncTs == 0 {
    		s.syncTs = ev.Time()
    	}
    	s.lastTs = ev.Time()
    
    	switch ev.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/tfcompile_test.cc

    }
    
    TEST(TFCompileTest, LookupNameIndex) {
      // add doesn't have any names defined in its config.
      AddComp add;
      EXPECT_FALSE(add.HasNameIndices());
    
      // muladd has names defined for all feeds and fetches.
      ::foo::bar::MatMulAndAddComp muladd;
      EXPECT_TRUE(muladd.HasNameIndices());
    
      EXPECT_EQ(muladd.LookupArgIndex("x"), 0);
      EXPECT_EQ(muladd.LookupArgIndex("y"), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    // the in-loop adjustment is 5 (for example), then there is not much
    // point treating it as inlinable. On the other hand "bar" has a param
    // property (parameter "x" feeds unmodified to an "if" statement") and
    // a return property (always returns same constant) meaning that a
    // given call _could_ be rescored down as much as -35 points-- thus if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

        const TF_Operation* const* target_opers, int ntargets,
        // RunMetadata
        TF_Buffer* run_metadata,
        // Output status
        TF_Status*);
    
    // Set up the graph with the intended feeds (inputs) and fetches (outputs) for a
    // sequence of partial run calls.
    //
    // On success, returns a handle that is used for subsequent PRun calls. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    // TODO(b/177675373): Make dtypes and shapes derived attributes,
    // use more general solution.
    def TF_InfeedEnqueueTupleOp : TF_Op<"InfeedEnqueueTuple", []> {
      let summary = [{
    Feeds multiple Tensor values into the computation as an XLA tuple.
      }];
    
      let arguments = (ins
        Arg<Variadic<TF_Tensor>, [{A list of tensors that will be provided using the infeed mechanism.}]>:$inputs,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top