Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for Sizes (0.1 sec)

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

    // known (fixed).
    struct SizeInfo {
      Value size;
      bool fixed;
    };
    
    // Modifies a function's signature to rewrite tensor list arguments to buffers
    // and sizes.
    void ModifyFunctionSignature(
        func::FuncOp func, Type size_type,
        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size,
        llvm::function_ref<std::optional<Type>(int64_t)> arg_to_buffer_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

            tf_op->hasTrait<mlir::OpTrait::AttrSizedResultSegments>()) {
          // The op has multiple variadic operands or results.
          // Calculate operand and result segment sizes using the OpDef.
          tensorflow::NameRangeMap input_ranges, output_ranges;
          // This will fail only if the OpDef is syntactically invalid.
          if (!NameRangesForNode(node_def, *op_def, &input_ranges, &output_ranges)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/core.go

    	return cidrs, dualstack, nil
    }
    
    // setNodeCIDRMaskSizes returns the IPv4 and IPv6 node cidr mask sizes to the value provided
    // for --node-cidr-mask-size-ipv4 and --node-cidr-mask-size-ipv6 respectively. If value not provided,
    // then it will return default IPv4 and IPv6 cidr mask sizes.
    func setNodeCIDRMaskSizes(cfg nodeipamconfig.NodeIPAMControllerConfiguration, clusterCIDRs []*net.IPNet) ([]int, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_bit_writer.go

    	0x0000c0, 0x000100, 0x000180, 0x000200, 0x000300,
    	0x000400, 0x000600, 0x000800, 0x000c00, 0x001000,
    	0x001800, 0x002000, 0x003000, 0x004000, 0x006000,
    }
    
    // The odd order in which the codegen code sizes are written.
    var codegenOrder = []uint32{16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}
    
    type huffmanBitWriter struct {
    	// writer is the underlying writer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    //
    // • Each file's uncompressed size must match its declared 64-bit uncompressed
    // size in the zip file header.
    //
    // • If the zip contains files named "<module>@<version>/go.mod" or
    // "<module>@<version>/LICENSE", their sizes in bytes may be at most
    // [MaxGoMod] or [MaxLICENSE], respectively (both are 16 MiB).
    //
    // • Empty directories are ignored. File permissions and timestamps are also
    // ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    // expected-error@-1 {{'tf_device.replicate' expects 'n' to be at least 2, got 1}}
      }
      func.return
    }
    
    // -----
    
    // Check that a replicate replicated inputs where operand sizes do not match
    // 'n' is invalid.
    func.func @parser_replicate_operand_count(%arg0: tensor<*xf32>) {
      tf_device.replicate([%arg0, %arg0, %arg0] as %input0: tensor<*xf32>) {n = 2 : i32} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      return builder.create<TF::PadV2Op>(
          loc, input.getType(), input, temp_padding,
          CreateScalarConstValue<int8_t>(builder, loc, input_zp_value));
    }
    
    }  // namespace
    
    // If input spatial sizes are dynamic (unknown) and padding is same, add ops to
    // dynamically calculate padding size and add input_zp value Pad op with the
    // padding.
    // Otherwise, calculates padding with known numbers, and only for non-zero
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    	limbs []uint
    }
    
    // preallocTarget is the size in bits of the numbers used to implement the most
    // common and most performant RSA key size. It's also enough to cover some of
    // the operations of key sizes up to 4096.
    const preallocTarget = 2048
    const preallocLimbs = (preallocTarget + _W - 1) / _W
    
    // NewNat returns a new nat with a size of zero, just like new(Nat), but with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

          if (contentType != null) {
            sink.writeUtf8("Content-Type: ")
              .writeUtf8(contentType.toString())
              .write(CRLF)
          }
    
          // We can't measure the body's size without the sizes of its components.
          val contentLength = body.contentLength()
          if (contentLength == -1L && countBytes) {
            byteCountBuffer!!.clear()
            return -1L
          }
    
          sink.write(CRLF)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/memcombine.go

    	case 84:
    		return b.NewValue1(pos, OpTrunc64to32, types.Types[types.TUINT32], v)
    	case 42:
    		return b.NewValue1(pos, OpTrunc32to16, types.Types[types.TUINT16], v)
    	default:
    		base.Fatalf("bad sizes %d %d\n", from, to)
    		return nil
    	}
    }
    func zeroExtend(b *Block, pos src.XPos, v *Value, from, to int64) *Value {
    	switch from*10 + to {
    	case 24:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top