Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for unpacked (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

                return viewBuilder.build(parameter)!!
            }
    
            override fun getHash(): HashCode {
                val unpacked = ToolingParameterProxy.unpackProperties(parameter)
                return Hashing.hashHashable(valueSnapshotter.snapshot(unpacked))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            unpack_output_type.begin(), num_unpacked,
            tensorflow::GetTypeFromTFTensorShape(output_shape, input_element_type));
        auto unpack = rewriter.create<TF::UnpackOp>(loc, unpack_output_type, input,
                                                    /*axis=*/0);
    
        // Concatenate the unpacked tensors along the first dimension.
        // Since we're concatenating along first dimension, change its dim size to
        // -1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. src/sync/mutex.go

    import (
    	"internal/race"
    	"sync/atomic"
    	"unsafe"
    )
    
    // Provided by runtime via linkname.
    func throw(string)
    func fatal(string)
    
    // A Mutex is a mutual exclusion lock.
    // The zero value for a Mutex is an unlocked mutex.
    //
    // A Mutex must not be copied after first use.
    //
    // In the terminology of [the Go memory model],
    // the n'th call to [Mutex.Unlock] “synchronizes before” the m'th call to [Mutex.Lock]
    // for any n < m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

      // Load input model
      auto input_fbm = tflite::FlatBufferModel::BuildFromFile(
          "tensorflow/lite/testdata/sparse_tensor.bin");
      tflite::ModelT input_model;
      input_fbm->GetModel()->UnPackTo(&input_model);
    
      // Populate input metadata
      auto model_metadata_buffer = std::make_unique<tflite::BufferT>();
      model_metadata_buffer->data =
          std::vector<uint8_t>(expected_value.begin(), expected_value.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/sync/rwmutex.go

    // A RWMutex is a reader/writer mutual exclusion lock.
    // The lock can be held by an arbitrary number of readers or a single writer.
    // The zero value for a RWMutex is an unlocked mutex.
    //
    // A RWMutex must not be copied after first use.
    //
    // If any goroutine calls [RWMutex.Lock] while the lock is already held by
    // one or more readers, concurrent calls to [RWMutex.RLock] will block until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    using testing::FloatEq;
    using testing::FloatNear;
    using testing::IsEmpty;
    using testing::NotNull;
    using testing::SizeIs;
    
    // Unpacks the given flatbuffer model.
    //
    // This helper is useful as UnPackTo requires the input to not have any existing
    // state so directly calling UnPackTo could lead to memory leaks if the model
    // already had some state. Instead, the returned object from here can be used to
    // overwrite existing model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

      return op_name.lower();
    }
    
    std::unique_ptr<tflite::ModelT> CreateMutableModelFromFile(
        const tflite::Model* input_model) {
      auto copied_model = std::make_unique<tflite::ModelT>();
      input_model->UnPackTo(copied_model.get(), nullptr);
      return copied_model;
    }
    }  // namespace
    
    // TODO(b/214314076): Support MLIR model as an input for the C++ dynamic range
    // quantization API
    TfLiteStatus QuantizeWeights(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return newErrWatcher(err), nil
    	}
    
    	// We explicitly use thread unsafe version and do locking ourself to ensure that
    	// no new events will be processed in the meantime. The watchCache will be unlocked
    	// on return from this function.
    	// Note that we cannot do it under Cacher lock, to avoid a deadlock, since the
    	// underlying watchCache is calling processEvent under its lock.
    	c.watchCache.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedResultTypeAttr out_idx = TF_DerivedResultTypeAttr<1>;
    }
    
    def TF_UnpackOp : TF_Op<"Unpack", [Pure]> {
      let summary = [{
    Unpacks a given dimension of a rank-`R` tensor into `num` rank-`(R-1)` tensors.
      }];
    
      let description = [{
    Unpacks `num` tensors from `value` by chipping it along the `axis` dimension.
    For example, given a tensor of shape `(A, B, C, D)`;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top