Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,122 for check$1 (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/push-tpose-through-ewise.mlir

      func.return %1 : tensor<3x2xi32>
    }
    
    // CHECK: %cst = arith.constant dense<[1, 0]> : tensor<2xi32>
    // CHECK: [1, 3, 5], [2, 4, 6]
    // CHECK: %0 = tfl.add %arg0, %cst_0 {fused_activation_function = "NONE"} : tensor<2x3xi32>
    // CHECK: %1 = "tfl.transpose"(%0, %cst) : (tensor<2x3xi32>, tensor<2xi32>) -> tensor<3x2xi32>
    // CHECK: return %1 : tensor<3x2xi32>
    
    // -----
    
    // CHECK-LABEL: pushTposeAfterSubSimple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue23017.go

    func main() {}
    
    func init() {
    	var m = map[int]int{}
    	var p *int
    
    	defer func() {
    		recover()
    		check(1, len(m))
    		check(42, m[2])
    	}()
    	m[2], *p = 42, 2
    }
    
    func init() {
    	var m = map[int]int{}
    	p := []int{}
    
    	defer func() {
    		recover()
    		check(1, len(m))
    		check(2, m[2])
    	}()
    	m[2], p[1] = 2, 2
    }
    
    func init() {
    	type P struct{ i int }
    	var m = map[int]int{}
    	var p *P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 03 19:48:18 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/unfold_splat_constant_pass.mlir

      // CHECK: return %1 : tensor<1x750xf32>
    }
    
    // CHECK-LABEL: @unfold_splat_constant_integer
    func.func @unfold_splat_constant_integer() -> tensor<1x750xi32> {
      %cst = mhlo.constant dense<1> : tensor<1x750xi32>
      func.return %cst : tensor<1x750xi32>
    
      // CHECK-DAG: %0 = mhlo.constant dense<1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue22662.go

    //-style line directives
    //line :1
    	check("??", 1) // no file specified
    //line foo.go:1
    	check("foo.go", 1)
    //line bar.go:10:20
    	check("bar.go", 10)
    //line :11:22
    	check("bar.go", 11) // no file, but column specified => keep old filename
    
    /*-style line directives */
    /*line :1*/ check("??", 1) // no file specified
    /*line foo.go:1*/ check("foo.go", 1)
    /*line bar.go:10:20*/ check("bar.go", 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:32:03 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-vhlo.mlir

      ^bb0(%arg2: tensor<5xf32>, %arg3: tensor<5xf32>):
        // CHECK:      %1 = "tfl.abs"(%arg2) {fused_activation_function = "NONE"} : (tensor<5xf32>) -> tensor<5xf32>
        // CHECK-NEXT: %2 = "vhlo.add_v1"(%1, %arg2) : (tensor<5xf32>, tensor<5xf32>) -> tensor<5xf32>
        // CHECK-NEXT: %3 = "tfl.abs"(%2) {fused_activation_function = "NONE"} : (tensor<5xf32>) -> tensor<5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 22:39:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_drq_per_channel.mlir

        return %0 : tensor<*xf32>
      }
    
    // CHECK-LABEL: func @depthwise_conv
    // CHECK-DAG: %[[CONST_0:.*]] = arith.constant dense<0.000000e+00> : tensor<2xf32>
    // CHECK-DAG: %[[CONST_1:.*]] = arith.constant dense<3.000000e+00> : tensor<2x3x1x1536xf32>
    // CHECK: %0 = "quantfork.qcast"(%[[CONST_1]]) : (tensor<2x3x1x1536xf32>) -> tensor<2x3x1x1536x!quant.uniform<i8<-127:127>:f32:3, {0.023622047244094488,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_drq.mlir

        return %0 : tensor<*xf32>
      }
    
    // CHECK-LABEL: func @conv2d
    // CHECK-DAG: %[[CONST_0:.*]] = arith.constant dense<0.000000e+00> : tensor<2xf32>
    // CHECK-DAG: %[[CONST_1:.*]] = arith.constant dense<3.000000e+00> : tensor<2x3x3x512xf32>
    // CHECK: %0 = "quantfork.qcast"(%[[CONST_1]]) : (tensor<2x3x3x512xf32>) -> tensor<2x3x3x512x!quant.uniform<i8<-127:127>:f32, 0.023622047244094488>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/containers-api/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::api[]
    tasks.named("check")                    // <1>
    tasks.register("myTask1")               // <2>
    
    tasks.named<JavaCompile>("compileJava") // <3>
    tasks.register<Copy>("myCopy1")         // <4>
    
    tasks.named("assemble") {               // <5>
        dependsOn(":myTask1")
    }
    tasks.register("myTask2") {             // <6>
        description = "Some meaningful words"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 597 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/legacy_reshape.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    
    // CHECK: %0 = "tfl.pseudo_const"() <{value = dense<2> : tensor<2xi32>}> : () -> tensor<2xi32>
    // CHECK: %1 = "tfl.reshape"(%arg0, %0) : (tensor<1x4xf32>, tensor<2xi32>) -> tensor<2x2xf32>
    
    {
      "version": 3,
      "operator_codes": [
        {
          "builtin_code": "RESHAPE"
        }
      ],
      "subgraphs": [
        {
          "tensors": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 986 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      func.return %2 : tensor<1x6x6x16xf32>
    
    // CHECK: %0 = "tfl.dequantize"(%arg0)
    // CHECK: %1 = "tfl.dequantize"(%arg1)
    // CHECK: %2 = "tfl.maximum"(%0, %1)
    // CHECK: %3 = "tfl.quantize"(%2)
    // CHECK: %4 = "tfl.dequantize"(%3)
    // CHECK: return %4 : tensor<1x6x6x16xf32>
    }
    
    // CHECK-LABEL: QuantizeMinimum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top