Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 319 for conditional (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

       // Start step i
       N_i = non_tpu(args_i)
       F_i = forward(args_i, N_i)
    
       // Conditional update
       args_ip1 = update_args(args_i, N_i)  // T_i is lagged.
       C_ip1 = cond(args_ip1)
    
       return (...)
    }
    // Note: the tf.while conditional is based on Ci which is initially C2. The
    // tf.while op returns the inputs unmodified if the initial conditional is
    // false. Thus, the following special cases hold for N <= 2:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    		},
    		{
    			"conditional valueless attr name",
    			`<input{{if .T}} checked{{end}} name=n>`,
    			`<input checked name=n>`,
    		},
    		{
    			"conditional dynamic valueless attr name 1",
    			`<input{{if .T}} {{"checked"}}{{end}} name=n>`,
    			`<input checked name=n>`,
    		},
    		{
    			"conditional dynamic valueless attr name 2",
    			`<input {{if .T}}{{"checked"}} {{end}}name=n>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        a bug where a shared connection pool did not guarantee shared connections in some cases.
     *  Fix: Prefer the server's response body on all conditional cache misses. Previously we would
        return the cached response's body if it had a newer `Last-Modified` date.
     *  Fix: Update the stored timestamp on conditional cache hits.
     *  New: Optimized HTTP/2 request header encoding. More headers are HPACK-encoded and string
        literals are now Huffman-encoded.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    				rescan = true
    			}
    
    			// very large conditional branches
    			//
    			// if any procedure is large enough to generate a large SBRA branch, then
    			// generate extra passes putting branches around jmps to fix. this is rare.
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Preconditions.java

     *
     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    			switch p.To.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC:
    				p.Mark |= NEED_PCREL_STYPE_RELOC
    			}
    		}
    	}
    }
    
    // InvertBranch inverts the condition of a conditional branch.
    func InvertBranch(as obj.As) obj.As {
    	switch as {
    	case ABEQ:
    		return ABNE
    	case ABEQZ:
    		return ABNEZ
    	case ABGE:
    		return ABLT
    	case ABGEU:
    		return ABLTU
    	case ABGEZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		},
    	}
    
    	// All blocks on s390x have their condition code mask (s390x.CCMask) as the Aux value.
    	// The condition code mask is a 4-bit mask where each bit corresponds to a condition
    	// code value. If the value of the condition code matches a bit set in the condition
    	// code mask then the first successor is executed. Otherwise the second successor is
    	// executed.
    	//
    	// | condition code value |  mask bit  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

     *
     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p384_fiat64.go

    type p384NonMontgomeryDomainFieldElement [6]uint64
    
    // p384CmovznzU64 is a single-word conditional move.
    //
    // Postconditions:
    //
    //	out1 = (if arg1 = 0 then arg2 else arg3)
    //
    // Input Bounds:
    //
    //	arg1: [0x0 ~> 0x1]
    //	arg2: [0x0 ~> 0xffffffffffffffff]
    //	arg3: [0x0 ~> 0xffffffffffffffff]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Lowering calls
    (StaticCall ...) => (CALLstatic ...)
    (ClosureCall ...) => (CALLclosure ...)
    (InterCall ...) => (CALLinter ...)
    (TailCall ...) => (CALLtail ...)
    
    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top