Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for no_aop (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: %[[LOCAL_BARRIER:.*]] = tf_executor.island(%[[CONTROL_ASSIGN_VAR_RES_0_0]], %[[CONTROL_ASSIGN_VAR_RES_1_0]], %[[CONTROL_ADA_GRAD]]) wraps "tf.NoOp"() : () -> ()
        %local_barrier = tf_executor.island(%assign_control_0, %assign_control_1, %apply_grad_control) wraps "tf.NoOp"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //   ApplyWeightUpdates_1 -> Computation_B
            //   ApplyWeightUpdates_2 -> Computation_C
            //   Computation_A -> NoOp
            //   Computation_B -> NoOp
            //   Computation_C -> NoOp
            //   "iteration++" -> NoOp
            // }
            //
            // In the graph above we can't cluster iteration++ with any of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %island2 = tf_executor.island(%island1) wraps "tf.NoOp"() : () -> ()
                                                    ^
      7:55: note: see current operation: %control_0 = tf_executor.island(%control) wraps "tf.NoOp"() : () -> ()
      8:55: warning: unexpected control dependency path: path 0, node 2 (intermediate)
      %island3 = tf_executor.island(%island2) wraps "tf.NoOp"() : () -> ()
                                                    ^
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      // CHECK-NEXT: "tf.AssignSubVariableOp"([[UNUSED_RESOURCE]], [[CONST]])
    
      // CHECK:      "tf_device.cluster"
      // CHECK-NEXT:   "tf.ReadVariableOp"([[USED_RESOURCE]])
      // CHECK-NEXT:   "tf.NoOp"
      // CHECK-NEXT:   tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			this._set_settings	= function (s) {
    				settings = $.extend(true, {}, settings, s);
    			};
    		},
    		_fn : { },
    		plugin : function (pname, pdata) {
    			pdata = $.extend({}, {
    				__init		: $.noop,
    				__destroy	: $.noop,
    				_fn			: {},
    				defaults	: false
    			}, pdata);
    			plugins[pname] = pdata;
    
    			$.jstree.defaults[pname] = pdata.defaults;
    			$.each(pdata._fn, function (i, val) {
    				val.plugin		= pname;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    }
    
    // newFakeFlagSet constructs a pflag.FlagSet with the same flags as fs, but where
    // all values have noop Set implementations
    func newFakeFlagSet(fs *pflag.FlagSet) *pflag.FlagSet {
    	ret := pflag.NewFlagSet("", pflag.ExitOnError)
    	ret.SetNormalizeFunc(fs.GetNormalizeFunc())
    	fs.VisitAll(func(f *pflag.Flag) {
    		ret.VarP(cliflag.NoOp{}, f.Name, f.Shorthand, f.Usage)
    	})
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

          scope.WithOpName("weights_0_update"), weights_0, delta);
      ops::AssignAddVariableOp weights_1_update_op(
          scope.WithOpName("weights_1_update"), weights_1, delta);
    
      ops::NoOp group_deps(scope.WithOpName("group_deps"));
    
      ops::NoOp some_ctrl_input(scope.WithOpName("some_ctrl_input"));
    
      Output matmul_input =
          ops::Placeholder(scope.WithOpName("matmul_input"), DT_FLOAT);
      Output matmul_0 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // subgraph. We store strings here so that we can tolerate nodes being
        // removed from the graph.
        absl::flat_hash_set<string> control_output_nodes_;
    
        // NoOp node in the output graph that is sequenced after the call node.
        Node* sequencer_ = nullptr;
      };
    
      // Returns the key attribute associated with a node in attr. Sets either
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history_test.go

    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    					revision: ss1Rev1,
    				},
    			},
    			reactor: nil,
    			err:     false,
    		},
    		{
    			name:        "update succeeds no noop",
    			revision:    ss1Rev1,
    			newRevision: ss1Rev1.Revision,
    			existing: []struct {
    				parent   metav1.Object
    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								},
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    						},
    					}},
    				applyPatchOperation{
    					"An invalid patch with no changes is a noop",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"enumField": "okValueNowBadValueLater",
    					}},
    				applyPatchOperation{
    					"Add a new field, and include old value in our patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top