Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for addRow (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      auto if_op = FindOperationOfType<mlir::stablehlo::IfOp>(main_fn);
      Block& block = if_op->getRegion(0).front();
      Operation& add_op = *absl::c_find_if(block, [](Operation& entry) {
        return dyn_cast_or_null<::mlir::stablehlo::AddOp>(&entry);
      });
      EXPECT_TRUE(IsInStableHloOpRegion(&add_op));
    }
    
    TEST_F(LiftAsFunctionCallTest, IsInRegionFailsWhenOpNotInsideRegion) {
      const OwningOpRef<ModuleOp> module_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		for _, r := range c.rss {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		for _, pod := range c.pods {
    			informers.Core().V1().Pods().Informer().GetIndexer().Add(pod)
    			manager.addPod(logger, pod)
    		}
    		actualPods, err := manager.getIndirectlyRelatedPods(logger, c.rs)
    		if err != nil {
    			t.Errorf("Unexpected error from getIndirectlyRelatedPods: %v", err)
    		}
    		var actualPodNames []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //===----------------------------------------------------------------------===//
    // Add op patterns.
    //===----------------------------------------------------------------------===//
    
    // We can lower AddOp to AddV2Op, except for string type. AddOp is defined for
    // TF_NumberNotQuantizedOrStrTensor tensor types. TF_NumberNotQuantizedTensor
    // is the same, except not containing TF_Str.
    
    def LowerAddOp : Pat<(TF_AddOp TF_NumberNotQuantizedTensor:$x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    # When true, the startup scripts do not enable kube-proxy either as a daemonset addon or as a static pod
    # regardless of the value of KUBE_PROXY_DAEMONSET.
    # When false, the value of KUBE_PROXY_DAEMONSET controls whether kube-proxy comes up as a static pod or
    # as an addon daemonset.
    KUBE_PROXY_DISABLE="${KUBE_PROXY_DISABLE:-false}" # true, false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    // callbacks to make incremental updates to its supposedly pre-calculated
    // state.
    type PreFilterExtensions interface {
    	// AddPod is called by the framework while trying to evaluate the impact
    	// of adding podToAdd to the node while scheduling podToSchedule.
    	AddPod(ctx context.Context, state *CycleState, podToSchedule *v1.Pod, podInfoToAdd *PodInfo, nodeInfo *NodeInfo) *Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		if !status.IsSuccess() {
    			err := status.AsError()
    			logger.Error(err, "Plugin failed", "pod", klog.KObj(podToSchedule), "node", klog.KObj(nodeInfo.Node()), "operation", "addPod", "plugin", pl.Name())
    			return framework.AsStatus(fmt.Errorf("running AddPod on PreFilter plugin %q: %w", pl.Name(), err))
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    // definition of Elementwise, all i/o shapes and types must be same-rank
    // broadcastable and fully static. Consider moving this into attribute later.
    bool IsElementwise(Operation *op) {
      if (!(llvm::isa<TFL::AddOp, TFL::MulOp, TFL::DivOp, TFL::SubOp,
                      TFL::MaximumOp, TFL::MinimumOp>(op))) {
        return false;
      }
    
      auto opr1_type =
          llvm::dyn_cast_or_null<RankedTensorType>(op->getOperand(0).getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		clock:                 clock,
    		podBackoffStore:       newBackoffStore(),
    	}
    
    	if _, err := jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.addJob(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			jm.updateJob(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/cronjob_controllerv2.go

    		cronJobListerSynced: cronJobsInformer.Informer().HasSynced,
    		now:                 time.Now,
    	}
    
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    jm.addJob,
    		UpdateFunc: jm.updateJob,
    		DeleteFunc: jm.deleteJob,
    	})
    
    	cronJobsInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      static const std::set<std::string> *legacy_op_list =
          new std::set<std::string>({
              // clang-format off
              // go/keep-sorted start
              TF::AbsOp::getOperationName().str(),
              TF::AddOp::getOperationName().str(),
              TF::AddV2Op::getOperationName().str(),
              TF::ArgMaxOp::getOperationName().str(),
              TF::AvgPoolOp::getOperationName().str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top