Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 192 for splay_ (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/unfold_splat_constant_pass.mlir

    // RUN: odml-to-stablehlo-opt %s -unfold-splat-constant-pass -cse -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: @unfold_splat_constant_float
    func.func @unfold_splat_constant_float() -> tensor<1x750xf32> {
      %cst = mhlo.constant dense<7.680000e+02> : tensor<1x750xf32>
      func.return %cst : tensor<1x750xf32>
    
      // CHECK-DAG: %0 = mhlo.constant dense<7.680000e+02> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/constant_utils.h

    // Returns a Constant op with a single value.
    absl::StatusOr<arith::ConstantOp> CreateConstOpWithSingleValue(
        PatternRewriter* rewriter, Location loc, ShapedType shaped_type, int value);
    
    // Returns a Constant op with a splat vector value.
    absl::StatusOr<arith::ConstantOp> CreateConstOpWithVectorValue(
        PatternRewriter* rewriter, Location loc, ShapedType shaped_type, int value);
    
    }  // namespace TFL
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 06:24:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/04-vuln.yml

        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/public/javascripts/hello.js

    if (window.console) {
      console.log("Welcome to your Play application's JavaScript!");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 88 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.play.integtest.fixtures.external
    
    import org.gradle.integtests.fixtures.SourceFile
    import org.gradle.play.integtest.fixtures.Repositories
    import org.gradle.smoketests.AbstractSmokeTest
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.internal.RelativePathUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    	LXVW4X (R9)(CONSTBASE), VS34
    	LXVW4X (R10)(CONSTBASE), VS35
    
    	// splat values from V17, V18 into V4-V11
    	VSPLTW $0, V17, V4
    	VSPLTW $1, V17, V5
    	VSPLTW $2, V17, V6
    	VSPLTW $3, V17, V7
    	VSPLTW $0, V18, V8
    	VSPLTW $1, V18, V9
    	VSPLTW $2, V18, V10
    	VSPLTW $3, V18, V11
    
    	// VOR
    	VOR V26, V26, V12
    
    	// splat values from V19 -> V13, V14, V15
    	VSPLTW $1, V19, V13
    	VSPLTW $2, V19, V14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/views/index.scala.html

    @(message: String)
    
    @main("Welcome to Play") {
    
        <h1>@message</h1>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 72 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/app/views/index.scala.html

    @(message: String)
    
    @main("Welcome to Play") {
    
        <h1>@message</h1>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 73 bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/public/javascripts/hello.js

    if (window.console) {
        console.log("Welcome to your Play application's JavaScript!");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 90 bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/callback.go

    		P = 10
    	}
    
    	if e := extraMInUse.Load(); e != 0 {
    		fmt.Printf("before testing extraMInUse got %d want 0\n", e)
    		os.Exit(1)
    	}
    
    	done := make(chan bool)
    	// allocate a bunch of stack frames and spray them with pointers
    	for i := 0; i < P; i++ {
    		go func() {
    			grow()
    			done <- true
    		}()
    	}
    	for i := 0; i < P; i++ {
    		<-done
    	}
    	// now give these stack frames to cgo callbacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 14:05:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top