Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tmpl (0.1 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	CMPL (BX), DX                           // 3913
    	CMPL (BX), R11                          // 44391b
    	CMPL (R11), DX                          // 413913
    	CMPL (R11), R11                         // 45391b
    	CMPL DX, DX                             // 39d2 or 3bd2
    	CMPL DX, R11                            // 4439da or 413bd3
    	CMPL R11, DX                            // 4139d3 or 443bda
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v3.AddArg3(v4, d3, v5)
    		v1.AddArg3(v2, d2, v3)
    		v.AddArg3(v0, d1, v1)
    		return true
    	}
    	// match: (Move {t1} [s] dst tmp1 midmem:(Move {t2} [s] tmp2 src _))
    	// cond: t1.Compare(t2) == types.CMPeq && isSamePtr(tmp1, tmp2) && isStackPtr(src) && !isVolatile(src) && disjoint(src, s, tmp2, s) && (disjoint(src, s, dst, s) || isInlinableMemmove(dst, src, s, config))
    	// result: (Move {t1} [s] dst src midmem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	}
    	// match: (CMPL x y)
    	// cond: canonLessThan(x,y)
    	// result: (InvertFlags (CMPL y x))
    	for {
    		x := v_0
    		y := v_1
    		if !(canonLessThan(x, y)) {
    			break
    		}
    		v.reset(OpAMD64InvertFlags)
    		v0 := b.NewValue0(v.Pos, OpAMD64CMPL, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (CMPL l:(MOVLload {sym} [off] ptr mem) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.file.archive.impl.AbstractZipEntry$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractZipEntry.java:0)
    Class <org.gradle.api.internal.file.archive.impl.AbstractZipEntry> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractZipEntry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  5. RELEASE.md

        *   `pfor/vectorized_map`: Added support for vectorizing 56 more ops.
            Vectorizing `tf.cond` is also supported now.
        *   Set as much partial shape as we can infer statically within the gradient
            impl of the gather op.
        *   Gradient of `tf.while_loop` emits `StatelessWhile` op if `cond` and body
            functions are stateless. This allows multiple gradients while ops to run
            in parallel under distribution strategy.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top