Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 764 for Unreserve (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

                                            OpBuilder &rewriter) {
      auto i64_type = rewriter.getIntegerType(64);
      if (types.size() > 1) {
        llvm::SmallVector<mlir::Attribute> v;
        v.reserve(types.size());
        for (const mlir::Type &t : types) {
          if (mlir::isa<mhlo::TokenType>(t)) continue;
          auto layout = GetTPUInfeedLayout({t}, rewriter);
          if (failed(layout)) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

    std::optional<ConstBytesAttr> CustomOptions(MLIRContext* context,
                                                mlir::Operation* op) {
      if (auto reserve =
              llvm::dyn_cast_or_null<mlir::TF::TensorListReserveOp>(op)) {
        tflite::TensorType tflite_type =
            tflite::ConvertTypeToTensorType(reserve.getElementDtype());
    
        return CreateListReserveOptions(context, tflite_type);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/registry/certificates/certificates/strategy.go

    	newIndices := findConditionIndices(newCSR, conditionType)
    	if len(oldIndices) != len(newIndices) {
    		// instances were added or removed, we cannot preserve the existing values
    		return false
    	}
    	// preserve the old condition values
    	for i, oldIndex := range oldIndices {
    		newCSR.Status.Conditions[newIndices[i]] = oldCSR.Status.Conditions[oldIndex]
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputLib.groovy

        final greeter = new CppGreeter()
        final sum = new CppSum()
        final multiply = new CppMultiply()
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply)
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 994 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// It is optional only if x-kubernetes-preserve-unknown-fields
    	// or x-kubernetes-int-or-string is true.
    	Type     string
    	Title    string
    	Default  JSON
    	Nullable bool
    }
    
    // +k8s:deepcopy-gen=true
    
    // Extensions contains the Kubernetes OpenAPI v3 vendor extensions.
    type Extensions struct {
    	// x-kubernetes-preserve-unknown-fields stops the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_sum_replaced.txt

    go mod edit -replace rsc.io/quote@v1.5.0=rsc.io/quote@v1.5.1
    go mod tidy
    grep 'rsc.io/quote v1.5.1' go.sum
    cp go.sum go.sum.tidy
    
    # 'go mod vendor' should preserve that sum, and should not need to add any new entries.
    go mod vendor
    grep 'rsc.io/quote v1.5.1' go.sum
    cmp go.sum go.sum.tidy
    
    -- go.mod --
    module golang.org/issue/27868
    
    require rsc.io/quote v1.5.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 677 bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     accepts a cause: Users of this class typically expect for instances to have a non-null
       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
       *     anyone from calling {@link #initCause} later, so it is not quite equivalent to using a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

                                                     ShapedType type) {
      // Extract to a vector of StringRefs for converting.
      auto arr = input_tensor.flat<tstring>();
      std::vector<mlir::StringRef> string_refs;
      string_refs.reserve(arr.size());
      for (int i = 0; i < arr.size(); i++) {
        const auto& val = arr(i);
        string_refs.push_back({val.data(), val.size()});
      }
    
      return ElementsAttr(DenseStringElementsAttr::get(type, string_refs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        const mlir::Value& original_source, mlir::OpBuilder* builder,
        llvm::SmallVectorImpl<mlir::Value>* tiled_inputs) {
      llvm::SmallVector<mlir::TF::SplitOp, 4> split_ops_for_tiled_input;
      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    cd $WORK/testdata
    go mod init testdata.tld/foo
    
    # Getting a package within that module should resolve its dependencies.
    go get
    grep 'rsc.io/quote' go.mod
    
    # Tidying the module should preserve those dependencies.
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    [short] stop
    
    # Vendoring the module's dependencies should work too.
    go mod vendor
    exists vendor/rsc.io/quote
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
Back to top