Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for NOOP (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          %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 Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    			}
    		case "m":
    			z.Metrics, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Metrics")
    				return
    			}
    		case "np":
    			z.NoOp, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "NoOp")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	Purge SRBucketDeleteOp = "Purge"
    	// NoOp no action needed
    	NoOp SRBucketDeleteOp = "NoOp"
    )
    
    // Empty returns true if this Op is not set
    func (s SRBucketDeleteOp) Empty() bool {
    	return string(s) == "" || string(s) == string(NoOp)
    }
    
    func getSRBucketDeleteOp(isSiteReplicated bool) SRBucketDeleteOp {
    	if !isSiteReplicated {
    		return NoOp
    	}
    	return MarkDelete
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      host_graph->reset(new Graph(fld));
    
      // Create sequencer node in host graph.
      NodeDefBuilder sequencer_builder(absl::StrCat(xla_cluster_name, "_sequencer"),
                                       "NoOp");
      sequencer_builder.Attr("_xla_host_transfer_sequencer", xla_cluster_name);
      NodeDef sequencer_def;
      TF_RETURN_IF_ERROR(sequencer_builder.Finalize(&sequencer_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        .SetIsAggregate();
    
    Node* Sequencer(const GraphDefBuilder::Options& opts,
                    const string& call_node_name) {
      if (opts.HaveError()) return nullptr;
      NodeBuilder node_builder(opts.GetNameForOp("NoOp"), "NoOp",
                               opts.op_registry());
      return opts.WithAttr(kXlaHostTransferSequencerAttr, call_node_name)
          .FinalizeBuilder(&node_builder);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    	"strings"
    	"testing"
    	"time"
    
    	sdktrace "go.opentelemetry.io/otel/sdk/trace"
    	"go.opentelemetry.io/otel/sdk/trace/tracetest"
    	oteltrace "go.opentelemetry.io/otel/trace"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"go.uber.org/mock/gomock"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        # e.g. "kubernetes-12345678-90ab-cdef-1234-567890abcdef". The name is
        # determined by the node controller on the master.
        # Note that this is currently a noop, as synchronously deleting the node MIG
        # first allows the master to cleanup routes itself.
        local TRUNCATED_PREFIX="${INSTANCE_PREFIX:0:26}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj:    9,
    			oldObj: 5,
    			schema: cloneWithRule(&integerType, "self >= 10 || (oldSelf.hasValue() && oldSelf.value() <= self)"),
    		},
    		{
    			name:   "ratchet noop update: new min or allow higher than oldValue",
    			obj:    5,
    			oldObj: 5,
    			schema: cloneWithRule(&integerType, "self >= 10 || (oldSelf.hasValue() && oldSelf.value() <= self)"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // data output or an explicit control output used by the same node, transitive
      // control dependencies are not to be executed. For single output nodes,
      // Placeholders can be converted to a NoOp if there are no uses, and
      // PlaceholderWithDefault can be converted to an Identity.
      for (const auto* edge : control_edges) {
        graph_->AddControlEdge(placeholder_node, edge->dst());
        graph_->RemoveControlEdge(edge);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    	SPOP_CGDVADP: {3, 7, 13, 5, true},
    	SPOP_CIGVAC:  {3, 7, 14, 3, true},
    	SPOP_CIGDVAC: {3, 7, 14, 5, true},
    	SPOP_CVAP:    {3, 7, 12, 1, true},
    	SPOP_CVADP:   {3, 7, 13, 1, true},
    }
    
    // Used for padding NOOP instruction
    const OP_NOOP = 0xd503201f
    
    // pcAlignPadLength returns the number of bytes required to align pc to alignedValue,
    // reporting an error if alignedValue is not a power of two or is out of range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top