Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for sdiv (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "DIV", argLength: 2, reg: gp21, asm: "SDIV"},                                                           // arg0 / arg1, signed
    		{name: "UDIV", argLength: 2, reg: gp21, asm: "UDIV"},                                                          // arg0 / arg1, unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        border-radius:10px;
        padding:10px;
        margin-bottom:10px;
        margin-right:10px;
        display:inline-block;
    }
    div.block div.deprecationComment, div.block div.block span.emphasizedPhrase,
    div.block div.block span.interfaceName {
        font-style:normal;
    }
    div.contentContainer ul.blockList li.blockList h2 {
        padding-bottom:0px;
    }
    /*
     * Styles for IFRAME.
     */
    .mainContainer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. docs/ru/docs/deployment/docker.md

    fastapi>=0.68.0,<0.69.0
    pydantic>=1.8.0,<2.0.0
    uvicorn>=0.15.0,<0.16.0
    ```
    
    Устанавливать зависимости проще всего с помощью `pip`:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    ---> 100%
    Successfully installed fastapi pydantic uvicorn
    ```
    
    </div>
    
    !!! info "Информация"
        Существуют и другие инструменты управления зависимостями.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Hmul(64|32) ...) => (HMUL(Q|L) ...)
    (Hmul(64|32)u ...) => (HMUL(Q|L)U ...)
    
    (Div(64|32|16) [a] x y) => (Select0 (DIV(Q|L|W) [a] x y))
    (Div8  x y) => (Select0 (DIVW  (SignExt8to16 x) (SignExt8to16 y)))
    (Div(64|32|16)u x y) => (Select0 (DIV(Q|L|W)U x y))
    (Div8u x y) => (Select0 (DIVWU (ZeroExt8to16 x) (ZeroExt8to16 y)))
    (Div(32|64)F ...) => (DIVS(S|D) ...)
    
    (Select0 (Add64carry x y c)) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    	case AMULHV:
    		return 0x3c << 15 // mulh.d
    	case AMULHVU:
    		return 0x3d << 15 // mulhu.d
    	case ADIV:
    		return 0x40 << 15 // div.w
    	case ADIVU:
    		return 0x42 << 15 // div.wu
    	case ADIVV:
    		return 0x44 << 15 // div.d
    	case ADIVVU:
    		return 0x46 << 15 // div.du
    	case AREM:
    		return 0x41 << 15 // mod.w
    	case AREMU:
    		return 0x43 << 15 // mod.wu
    	case AREMV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    .conum:not([data-value]):empty {
    	display: none;
    }
    
    dt,
    th.tableblock,
    td.content,
    div.footnote {
    	text-rendering: optimizeLegibility;
    }
    
    h1,
    h2,
    p,
    td.content,
    span.alt {
    	letter-spacing: -0.01em;
    }
    
    p strong,
    td.content strong,
    div.footnote strong {
    	letter-spacing: -0.005em;
    }
    
    p,
    blockquote,
    dt,
    td.content,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    		}
    		if q2.Cmp(q) != 0 || r2.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q2, r2, q, r)
    		}
    
    		d1 := new(Int).Div(x, y)
    		m1 := new(Int).Mod(x, y)
    		if !isNormalized(d1) {
    			t.Errorf("#%d Div: %v is not normalized", i, *d1)
    		}
    		if !isNormalized(m1) {
    			t.Errorf("#%d Mod: %v is not normalized", i, *m1)
    		}
    		if d1.Cmp(d) != 0 || m1.Cmp(m) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def ExpandTo4DForDepthwiseConv: NativeCodeCall<
      "ExpandTo4DForDepthwiseConv($0)">;
    
    // If we see a (div or Mul) op (dividing/multiplying) a constant value
    // to a convolution op with constant filter and bias, we can fuse the div/mul
    // into the convolution op by constant folding
    // the filter/bias and the div/mul op's constant operand.
    // The following pattern restricts to float constant values for now.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FMULCC F1, F2, F3               // fc620073
    	FMULS F1, F2                    // ec420072
    	FMULS F1, F2, F3                // ec620072
    	FMULSCC F1, F2, F3              // ec620073
    	FDIV F1, F2                     // fc420824
    	FDIV F1, F2, F3                 // fc620824
    	FDIVCC F1, F2, F3               // fc620825
    	FDIVS F1, F2                    // ec420824
    	FDIVS F1, F2, F3                // ec620824
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    		d.linkctxt.Errorf(gotype, "dwarf: type name doesn't start with \"type:\"")
    		return d.mustFind("<unspecified>")
    	}
    	name := sn[5:] // could also decode from Type.string
    
    	sdie := d.find(name)
    	if sdie != 0 {
    		return sdie
    	}
    
    	gtdwSym := d.newtype(gotype)
    	d.tdmap[gotype] = loader.Sym(gtdwSym.Sym.(dwSym))
    	return loader.Sym(gtdwSym.Sym.(dwSym))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top