Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,648 for computeLO (0.19 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_D34:
    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER:
    		o1 &^= 0xffff
    		o2 &^= 0xffff
    		o1 |= computeHA(int32(t))
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_DS:
    		o1 &^= 0xffff
    		o2 &^= 0xfffc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate.mlir

      func.return %arg0, %arg1 : tensor<?x?xi32>, tensor<?x?xi32>
    }
    
    // Batch function in batch_1 uses the same shared_name as the one in batch_0,
    // so compute_1 is deduped, and compute_0 will be used here.
    // CHECK-LABEL: func private @batch_1
    // CHECK: f = @compute_0
    // CHECK-NOT: f = @compute_1
    func.func private @batch_1(%arg0: tensor<?x?xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate_failed.mlir

      func.return %0#0 : tensor<*xi32>
    }
    
    // compute_3 has different argument types from compute_1, thus error is reported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tests/compute-cost.mlir

    // RUN: tac-opt-all-backends -tfl-compute-cost %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // CHECK: tac.cost = 7.864320e+05
    func.func @func_0_CPU(%arg0: tensor<256x32x32x3xf32>, %arg1: tensor<256x32x32x3xf32>) -> tensor<256x32x32x3xf32> attributes {tac.device = "CPU", tac.interface_name = "func_0"} {
      %0 = "tfl.add"(%arg0, %arg1) {fused_activation_function = "RELU", tac.device = "CPU"} : (tensor<256x32x32x3xf32>, tensor<256x32x32x3xf32>) -> tensor<256x32x32x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:29:10 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/compute.go

    	EtcdVersions                  map[string][]string
    	KubeletVersions               map[string][]string
    }
    
    // GetAvailableUpgrades fetches all versions from the specified VersionGetter and computes which
    // kinds of upgrades can be performed
    func GetAvailableUpgrades(versionGetterImpl VersionGetter, experimentalUpgradesAllowed, rcUpgradesAllowed bool, client clientset.Interface, printer output.Printer) ([]Upgrade, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/go/types/interface.go

    	// (don't sort embeddeds: they must correspond to *embedPos entries)
    
    	// Compute type set as soon as possible to report any errors.
    	// Subsequent uses of type sets will use this computed type
    	// set and won't need to pass in a *Checker.
    	check.later(func() {
    		computeInterfaceTypeSet(check, iface.Pos(), ityp)
    	}).describef(iface, "compute type set for %s", ityp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinInitScriptIntegrationTest.kt

                    """
    
                    initscript {
                        dependencies { classpath(files("fixture.jar")) }
                    }
    
                    val computer = ${DeepThought::class.qualifiedName}()
                    val answer = computer.compute()
                    println("*" + answer + "*")
                    """
                )
    
            assert(
                build("-I", initScript.canonicalPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/Quantiles.java

     *
     * <h3>Examples</h3>
     *
     * <p>To compute the median:
     *
     * <pre>{@code
     * double myMedian = median().compute(myDataset);
     * }</pre>
     *
     * where {@link #median()} has been statically imported.
     *
     * <p>To compute the 99th percentile:
     *
     * <pre>{@code
     * double myPercentile99 = percentiles().index(99).compute(myDataset);
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/Quantiles.java

     *
     * <h3>Examples</h3>
     *
     * <p>To compute the median:
     *
     * <pre>{@code
     * double myMedian = median().compute(myDataset);
     * }</pre>
     *
     * where {@link #median()} has been statically imported.
     *
     * <p>To compute the 99th percentile:
     *
     * <pre>{@code
     * double myPercentile99 = percentiles().index(99).compute(myDataset);
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                }
    
                task("compute") {
                    doLast {
                        val computer = ${DeepThought::class.qualifiedName}()
                        val answer = computer.compute()
                        println("*" + answer + "*")
                    }
                }
                """.let(buildscriptTransformation)
            )
    
            assert(
                build("compute").output.contains("*42*")
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top