Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for thereby (2.33 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// we should have memory pressure
    	if !manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should report memory pressure since soft threshold was met")
    	}
    
    	// verify no pod was yet killed because there has not yet been enough time passed.
    	if podKiller.pod != nil {
    		t.Errorf("Manager should not have killed a pod yet, but killed: %v", podKiller.pod.Name)
    	}
    
    	// step forward in time pass the grace period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        if (subtype == nullptr) {
          continue;
        }
        // Preserve the dtype from the restore op even if `AssignVariableOp` uses a
        // different dtype, which is possible when there's a `CastOp` between them.
        subtype = subtype.clone(
            mlir::cast<ShapedType>(op->getResult(0).getType()).getElementType());
        // Update the result type of this op with the resource's type. We only use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	rcvr := ctxt.rcvr
    	rcvrType, valueFuncType, methodFn := methodReceiver("call", rcvr, ctxt.method)
    
    	// There are two ABIs at play here.
    	//
    	// methodValueCall was invoked with the ABI assuming there was no
    	// receiver ("value ABI") and that's what frame and regs are holding.
    	//
    	// Meanwhile, we need to actually call the method with a receiver, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !exists {
    		t.Fatalf("No expectations found for DaemonSet %q", oldDSKey)
    	}
    	if dsExp.Fulfilled() {
    		t.Errorf("There should be unfulfilled expectation for creating new pods for DaemonSet %q", oldDSKey)
    	}
    
    	// process updates DS, update adds to queue
    	waitForQueueLength(1, "updated DS")
    	ok = dsc.processNextWorkItem(context.TODO())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_SumOp: TFL_Op<"sum", [
        QuantizableResult,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        // TODO(b/215655380): Re-enable this once there is 16-bit MLIR quantizer.
        // SameOperandsAndResultsScale,
        Pure]> {
    
      let summary = "Sum operator";
    
      let description = [{
        Computes the sum reduction along the specified axes
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          if (padding_array[2 * i] != pad_low_int64 ||
              padding_array[2 * i + 1] != pad_high_int64)
            return false;
        }
    
        return true;
      }
    
      // Slices the input `value` if there are negative padding values in
      // `explicit_padding`.
      Value SliceNegativePadding(Value value, ArrayRef<int64_t> explicit_padding,
                                 ConversionPatternRewriter& rewriter) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // this transposes the filter value from [i, o] -> [o, i]. This is because we
    // assume `[i, o]` format for `stablehlo.dot_general` (i.e. contracting
    // dimension == 1) whereas `tfl.fully_connected` accepts an `[o, i]` format.
    // If there is already a [i, o] -> [o, i] `stablehlo.transpose` in between the
    // constant and `rhs_op`, simply create an equivalent `tfl.qconst` from the
    // `stablehlo.constant` because it already suffices the desired format.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      return s;
    }
    
    Status Encapsulate(GraphDef* graphdef, FunctionDefLibrary* library) {
      std::vector<string> encapsulated_functions;
      return Encapsulate(graphdef, library, encapsulated_functions);
    }
    
    // If there are no marked nodes, funcification should be a no-op.
    TEST(EncapsulateSubgraphsTest, NoFunctions) {
      GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
    
      Node* a = Input(builder.opts().WithName("A"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      //   RecvAtHost/SendFromHost. If it has input control edge, we connect it to
      //   sink node so it won't be pruned.
      // - key_placeholder should be pruned iff there's no RecvAtHost/SendFromHost.
      //   We don't need to do anything special.
      if (!sequencer->in_edges().empty()) {
        (*host_graph)->AddControlEdge(sequencer, (*host_graph)->sink_node());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top