Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for arithmetic (0.17 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_VESLV  uint32 = 0xE770 // 	VRR-c	VECTOR ELEMENT SHIFT LEFT
    	op_VESL   uint32 = 0xE730 // 	VRS-a	VECTOR ELEMENT SHIFT LEFT
    	op_VESRA  uint32 = 0xE73A // 	VRS-a	VECTOR ELEMENT SHIFT RIGHT ARITHMETIC
    	op_VESRAV uint32 = 0xE77A // 	VRR-c	VECTOR ELEMENT SHIFT RIGHT ARITHMETIC
    	op_VESRL  uint32 = 0xE738 // 	VRS-a	VECTOR ELEMENT SHIFT RIGHT LOGICAL
    	op_VESRLV uint32 = 0xE778 // 	VRR-c	VECTOR ELEMENT SHIFT RIGHT LOGICAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        const auto [input_height, input_width, output_height, output_width] =
            GetInOutDimensions(op, dimension_numbers);
        const auto [stride_height, stride_width] = GetStrides(op);
    
        // Below convolution arithmetic for `SAME` padding calculation is
        // referenced from
        // https://www.tensorflow.org/api_docs/python/tf/nn/convolution. The
        // following condition must hold true for padding to be `SAME`:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		fpstoreidx = regInfo{inputs: []regMask{gpspsb, gpsp, fp, 0}}
    
    		prefreg = regInfo{inputs: []regMask{gpspsbg}}
    	)
    
    	var AMD64ops = []opData{
    		// {ADD,SUB,MUL,DIV}Sx: floating-point arithmetic
    		// x==S for float32, x==D for float64
    		// computes arg0 OP arg1
    		{name: "ADDSS", argLength: 2, reg: fp21, asm: "ADDSS", commutative: true, resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. doc/go1.17_spec.html

    x <= f()
    ^a >> b
    f() || g()
    x == y+1 && <-chanInt > 0
    </pre>
    
    
    <h3 id="Arithmetic_operators">Arithmetic operators</h3>
    <p>
    Arithmetic operators apply to numeric values and yield a result of the same
    type as the first operand. The four standard arithmetic operators (<code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>) apply to integer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    // CHECK: return %arg0, %arg1
    }
    
    // CHECK-LABEL: testSubOfZeroWithBroadcasting
    func.func @testSubOfZeroWithBroadcasting(%arg0: tensor<4x1xf32>) -> tensor<4x4xf32> {
      // This is an identity arithmetic operation, however we do not currently fold
      // it because it has a broadcasting.
      %0 = "tf.Const"() {value = dense<[[0.0, 0.0, 0.0, 0.0]]> : tensor<1x4xf32>} : () -> tensor<1x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mac_str = absl::StrFormat("%.3f G ",
                                    static_cast<double>(ops_count / 2) / billion);
        }
        LOG(INFO) << "Estimated count of arithmetic ops: " << flops_str
                  << " ops, equivalently " << mac_str << " MACs";
      }
    
      std::string model_description;
      if (auto attr = module_->getAttrOfType<StringAttr>("tfl.description")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    // from LC_LOCALE.
    func splitPkgConfigOutput(out []byte) ([]string, error) {
    	if len(out) == 0 {
    		return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // TODO: we should be able to get rid of MOVDnop all together.
    // But for now, this is enough to get rid of lots of them.
    (MOVDnop (MOVDconst [c])) => (MOVDconst [c])
    
    // fold constant into arithmetic ops
    (ADD  x (MOVDconst <t> [c])) && !t.IsPtr() => (ADDconst [c] x)
    (SUB  x (MOVDconst [c])) => (SUBconst [c] x)
    (AND  x (MOVDconst [c])) => (ANDconst [c] x)
    (OR   x (MOVDconst [c])) => (ORconst  [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    (If (ConstBool [c]) yes no) && !c => (First no yes)
    
    (Phi <t> nx:(Not x) ny:(Not y)) && nx.Uses == 1 && ny.Uses == 1 => (Not (Phi <t> x y))
    
    // Get rid of Convert ops for pointer arithmetic on unsafe.Pointer.
    (Convert (Add(64|32) (Convert ptr mem) off) mem) => (AddPtr ptr off)
    (Convert (Convert ptr mem) mem) => ptr
    
    // strength reduction of divide by a constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        QuantizableResult,
        Pure]> {
      let summary = "Broadcast an array for a compatible shape.";
    
      let description = [{
    Broadcasting is the process of making arrays to have compatible shapes
    for arithmetic operations. Two shapes are compatible if for each
    dimension pair they are either equal or one of them is one. When trying
    to broadcast a Tensor to a shape, it starts with the trailing dimensions,
    and works its way forward.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top