Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for zipsum (0.16 sec)

  1. src/compress/lzw/writer_test.go

    				t.Run(fmt.Sprintf("LitWidth %d", litWidth), func(t *testing.T) {
    					var data []byte
    					if litWidth == 6 {
    						data = []byte{1, 2, 3}
    					} else {
    						data = []byte(`lorem ipsum dolor sit amet`)
    					}
    					var buf bytes.Buffer
    					w := NewWriter(&buf, order, litWidth)
    					if _, err := w.Write(data); err != nil {
    						t.Errorf("write: %v: %v", string(data), err)
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

          }
    
          if (!is_weight_constant) {
            if (!function_name.contains("matmul") &&
                !function_name.contains("einsum")) {
              return absl::InternalError(
                  "Non-constant weights are not supported at the moment,"
                  " except matmul and einsum.");
            } else if (!quant_options_.enable_two_input_tensors() &&
                       !is_unitwise_quantization_enabled) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

              function_name.contains("and_bias")) {
            spec->biases_params[2] = {{0, 1},
                                      quant::GetUniformQuantizedTypeForBias};
          }
        } else if (function_name.contains("einsum")) {
          spec->coeff_op_quant_dim[1] = -1;
          if (function_name.contains("with_bias")) {
            spec->biases_params[2] = {{0, 1},
                                      quant::GetUniformQuantizedTypeForBias};
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         */
        public void setEntryCompression(ZipEntryCompression entryCompression) {
            this.entryCompression = entryCompression;
        }
    
        /**
         * Enables building zips with more than 65535 files or bigger than 4GB.
         *
         * @see #isZip64()
         */
        public void setZip64(boolean allowZip64) {
            this.allowZip64 = allowZip64;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_update_sum_readonly.txt

    # Delete downloaded .zip files.
    go clean -modcache
    
    # Check for updates.
    go list -m -u rsc.io/breaker
    stdout '^rsc.io/breaker v1.0.0 \[v2.0.0\+incompatible\]$'
    
    # We should not have downloaded zips.
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v1.0.0.zip
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v2.0.0+incompatible.zip
    
    -- go.mod --
    module m
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 27 22:01:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    using ::tensorflow::quantization::OpSet;
    
    class PrepareLiftingPass
        : public PassWrapper<PrepareLiftingPass, OperationPass<func::FuncOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

        func.return %5 : tensor<*xi32>
      }
    
       // Einsum with int32 accumulation.
      func.func private @internal_einsum_fn(
                             %input : tensor<*xi8>, %weight : tensor<*xi8>,
                             %input_scale : tensor<*xf32>, %input_zp : tensor<*xi32>,
                             %weight_scale : tensor<*xf32>, %weight_zp : tensor<*xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. requirements_lock_3_12.txt

        # via
        #   -r requirements.in
        #   h5py
        #   jax
        #   keras-nightly
        #   ml-dtypes
        #   opt-einsum
        #   scipy
        #   tb-nightly
    opt-einsum==3.3.0 \
        --hash=sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147 \
        --hash=sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549
        # via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
        if use_kernel:
          model.einsum = model.einsum_with_kernel
          model_inputs = {'x': x}
        else:
          model.einsum = model.einsum_without_kernel
          model_inputs = {'x': x, 'y': y}
    
        saved_model_save.save(
            model, self._input_saved_model_path, signatures=model.einsum
        )
    
        signature_key = signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. requirements_lock_3_11.txt

        # via
        #   -r requirements.in
        #   h5py
        #   jax
        #   keras-nightly
        #   ml-dtypes
        #   opt-einsum
        #   scipy
        #   tb-nightly
    opt-einsum==3.3.0 \
        --hash=sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147 \
        --hash=sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549
        # via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top