Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for rounds (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq32 _ (Const32 [math.MaxInt32]))  => (ConstBool [true])
    (Leq16 _ (Const16 [math.MaxInt16]))  => (ConstBool [true])
    (Leq8  _ (Const8  [math.MaxInt8 ]))  => (ConstBool [true])
    
    // Canonicalize <= on numeric bounds and < near numeric bounds to ==
    (Leq(64|32|16|8)U x c:(Const(64|32|16|8) [0]))     => (Eq(64|32|16|8) x c)
    (Leq(64|32|16|8)U c:(Const(64|32|16|8) [-1]) x)    => (Eq(64|32|16|8) x c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @round(%arg0: tensor<8x16xf32>) -> tensor<8x16xf32> {
      %0 = "tf.Round"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    
      // CHECK-LABEL: round
      // CHECK: %[[ARG:.*]]: tensor<8x16xf32>
      // CHECK: %[[RESULT:.*]] = "tfl.round"(%[[ARG]]) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				found := false
    				for _, warning := range recorder.Warnings() {
    					if warning == expectedWarning {
    						found = true
    						break
    					}
    				}
    				assert.True(t, found, "expected warning %q not found", expectedWarning)
    			}
    
    		})
    	}
    }
    
    // Runs transition rule cases with OptionalOldSelf set to true on the schema
    func TestOptionalOldSelf(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val type: KaClassLikeSymbol
            val bounds: List<KaType>
        }
    
        interface InconsistentTypeParameterBounds : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = InconsistentTypeParameterBounds::class
            val typeParameter: KaTypeParameterSymbol
            val type: KaClassLikeSymbol
            val bounds: List<KaType>
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	mapIfNotPresent := func(m map[string]string, key string, val string) {
    		_, found := m[key]
    		if !found {
    			m[key] = val
    		}
    	}
    
    	_, found := hostAnonymizer[currentURL]
    	if !found {
    		// In distributed setup, anonymized addr = 'poolNum.serverNum'
    		newHost := fmt.Sprintf("pool%d.server%d", poolNum, srvrNum)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	op_LDXBR   uint32 = 0xB345 // FORMAT_RRE        LOAD ROUNDED (extended to long BFP)
    	op_LDXBRA  uint32 = 0xB345 // FORMAT_RRF5       LOAD ROUNDED (extended to long BFP)
    	op_LDXR    uint32 = 0x2500 // FORMAT_RR         LOAD ROUNDED (extended to long HFP)
    	op_LDXTR   uint32 = 0xB3DD // FORMAT_RRF5       LOAD ROUNDED (extended to long DFP)
    	op_LDY     uint32 = 0xED65 // FORMAT_RXY1       LOAD (long)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    						"node2": framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "unknownPVC" not found`).WithPlugin("VolumeBinding"),
    					},
    					PreFilterMsg:         `persistentvolumeclaim "unknownPVC" not found`,
    					UnschedulablePlugins: sets.New(volumebinding.Name),
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class InconsistentTypeParameterValuesImpl(
        override val typeParameter: KaTypeParameterSymbol,
        override val type: KaClassLikeSymbol,
        override val bounds: List<KaType>,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtClass>(firDiagnostic, token), KaFirDiagnostic.InconsistentTypeParameterValues
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	for addr < lastAddr {
    		// Find the last symbol we'd write.
    		idx := -1
    		for i, s := range syms {
    			if ldr.AttrSubSymbol(s) {
    				continue
    			}
    
    			// If the next symbol's size would put us out of bounds on the total length,
    			// stop looking.
    			end := ldr.SymValue(s) + ldr.SymSize(s)
    			if end > lastAddr {
    				break
    			}
    
    			// We're gonna write this symbol.
    			idx = i
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        return %3: tensor<512xi32>
      }
    func.func private @_func(%arg0: tensor<?xi32, #mhlo.type_extensions<bounds = [512]>> {mhlo.sharding = "\08\01\1A\01\01\22\01\00"}) -> (tensor<512xi32>) {
        %0 = "tf.A"(%arg0) {} : (tensor<?xi32, #mhlo.type_extensions<bounds = [512]>>) -> tensor<512xi32>
        return %0 : tensor<512xi32>
      }
    }
    
    // -----
    
    // The following xla.OpSharding is used:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top