Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for allee (0.15 sec)

  1. docs/de/docs/tutorial/dependencies/global-dependencies.md

        ```Python hl_lines="15"
        {!> ../../../docs_src/dependencies/tutorial012.py!}
        ```
    
    Und alle Ideen aus dem Abschnitt über das [Hinzufügen von `dependencies` zu den *Pfadoperation-Dekoratoren*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} gelten weiterhin, aber in diesem Fall für alle *Pfadoperationen* in der Anwendung.
    
    ## Abhängigkeiten für Gruppen von *Pfadoperationen*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // CHECK: "tf.StatefulPartitionedCall"
      // CHECK-SAME: f = @callee
      %call = "tf.StatefulPartitionedCall"(%stack, %arg0) {f = @callee, config = "", config_proto = "", executor_type = ""}
        : (tensor<!tf_type.resource>, tensor<i1>) -> tensor<!tf_type.resource>
      // CHECK: "tf.PartitionedCall"
      // CHECK-SAME: f = @callee
      %call2 = "tf.PartitionedCall"(%stack, %arg0) {f = @callee, config = "", config_proto = "", executor_type = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

      # CHECK-NOT:    tf_saved_model.exported_names
    
      @tf.function(input_signature=[tf.TensorSpec([], tf.float32)])
      def callee(self, x):
        return x, self.v
    
      @tf.function(input_signature=[tf.TensorSpec([], tf.float32)])
      def caller(self, x):
        return self.callee(x)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      // cluster ops.
      while (!function_worklist.empty()) {
        func::FuncOp caller = function_worklist.front();
        function_worklist.pop();
        for (auto callee : caller_callee_map[caller]) {
          if (reachable_functions.insert(callee).second)
            function_worklist.push(callee);
        }
      }
    }
    
    // Applies patterns locally on ops within `cluster` until convergence or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        for (auto callee : {&if_op.getThenBranch(), &if_op.getElseBranch()}) {
          work_list->push_back(std::make_pair(callee, argument_index));
        }
      } else if (auto while_op = dyn_cast<TF::WhileOp>(user_op)) {
        (*arguments_to_erase)[while_op].push_back(argument_index);
        for (auto callee : {while_op.cond_function(), while_op.body_function()}) {
          (*arguments_to_erase)[callee].push_back(argument_index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    type Ctr interface {
    	Count() int
    }
    
    type Conc struct {
    	X int
    }
    
    func (c *Conc) Count() int {
    	return c.X
    }
    
    func DoCall(c *Conc) {
    	c2 := Callee(c)
    	println(c2.Count())
    }
    
    func Callee(ii Ctr) Ctr {
    	q := ii.Count()
    	return &Conc{X: q}
    }
    -- main/main.go --
    package main
    
    import (
    	"M/a"
    	"M/b"
    )
    
    func MFunc() string {
    	return "42"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. docs/de/docs/advanced/middleware.md

    ## `HTTPSRedirectMiddleware`
    
    Erzwingt, dass alle eingehenden Requests entweder `https` oder `wss` sein müssen.
    
    Alle eingehenden Requests an `http` oder `ws` werden stattdessen an das sichere Schema umgeleitet.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/advanced_middleware/tutorial001.py!}
    ```
    
    ## `TrustedHostMiddleware`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      if (!emplace_res.second) {
        // This callee was handled before.
        if (!info.signature_change) return success();
        return recreate_caller();
      }
      // Rewrite the callee.
      llvm::SmallDenseMap<Value, SizeInfo> callee_map;
      func::FuncOp lowered_callee = callee;
      if (!callee.isPrivate()) {
        // Clone non-private callee in case of signature change.
        lowered_callee = callee.clone();
        lowered_callee.setPrivate();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_validate_inputs.cc

      auto calls_entry_functions = [&](SymbolUserOpInterface op) {
        llvm::SmallVector<func::FuncOp> callees;
        if (GetCallees(op, symtab, callees).failed()) {
          return false;
        }
        for (auto &callee : callees) {
          if (IsEntryFunction(callee)) {
            return true;
          }
        }
        return false;
      };
    
      for (auto &entry_func : entry_funcs) {
        llvm::SmallVector<SymbolUserOpInterface> calls;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

    func.func @test_xla_call_module_with_host_communicative_subcomputation() {
      "tf.XlaCallModule"() {Sout = [], device = "", dim_args_spec = [], function_list = [@callee], module = "", platforms = [], version = 4 : i64} : () -> ()
      func.return
    }
    
    // CHECK-LABEL: callee
    func.func private @callee(%arg0: tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top