Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 331 for i32 (0.01 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tests/target-annotation.mlir

      // CHECK: tac.device = "GPU", tac.inference_type = "FLOAT"
      %0 = "tfl.depthwise_conv_2d"(%arg0, %arg1, %arg2) {depth_multiplier = 1 : i32, dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<1x112x112x32xf32>, tensor<1x3x3x32xf32>, tensor<32xf32>) -> tensor<1x112x112x32xf32>
      func.return %0 : tensor<1x112x112x32xf32>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/extract_tpu_copy_with_dynamic_shape_op.mlir

        %0:2 = "tf_device.launch"() ({
    	  %1 = "tf.Cast"(%arg0) {Truncate = false} : (tensor<2048xi64>) -> tensor<2048xi32>
    	  %2 = "tf.Cast"(%arg1) {Truncate = false} : (tensor<2048xi64>) -> tensor<2048xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2exec/tfl_while_op.mlir

      }) : (tensor<i32>, tensor<1xf32>, tensor<i32>) -> (tensor<i32>, tensor<1xf32>, tensor<i32>)
      func.return %0#1, %0#2 : tensor<1xf32>, tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 19 17:11:31 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_remove_vars_in_session_initializer.mlir

        %2 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %3 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %4 = "tf.Add"(%2, %3) : (tensor<i32>, tensor<i32>) -> tensor<i32>
        "tf.AssignAddVariableOp"(%0, %4) {dtype = "tfdtype$DT_INT32"} : (tensor<*x!tf_type.resource<tensor<2x8xi32>>>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 00:22:36 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/tests/import_quant_stats.mlir

    
    // CHECK-LABEL: import_stats_skip
    func.func @import_stats_skip(%arg0: tensor<4xf32>, %cst: tensor<i32>) -> (tensor<2xf32>,tensor<2xf32>) {
      %0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2xf32>, tensor<2xf32>)
        loc(fused["skip1", "skip2.cc":10:8, callsite("op" at "skip3.cc":10:8)])
      func.return %0#0, %0#1 : tensor<2xf32>, tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/legalized_name.mlir

        // CHECK: name: "fo.o"
        %1:2 = tf_executor.island wraps "tf.Const"() {dtype = "tfdtype$DT_INT32", value = dense<1> : tensor<i32>} : () -> (tensor<i32>) loc("fo{o")
        // CHECK: name: "foo"
        %2:2 = tf_executor.island wraps "tf.Const"() {dtype = "tfdtype$DT_INT32", value = dense<2> : tensor<i32>} : () -> (tensor<i32>) loc("foo@1")
        // CHECK: name: "ba.r"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. test/bounds.go

    	use(a1k[ui16])
    	use(a100k[ui16]) // ERROR "index bounds check elided"
    	use(p1[ui16])
    	use(p1k[ui16])
    	use(p100k[ui16]) // ERROR "index bounds check elided"
    
    	use(s[i32])
    	use(a1[i32])
    	use(a1k[i32])
    	use(a100k[i32])
    	use(p1[i32])
    	use(p1k[i32])
    	use(p100k[i32])
    
    	use(s[ui32])
    	use(a1[ui32])
    	use(a1k[ui32])
    	use(a100k[ui32])
    	use(p1[ui32])
    	use(p1k[ui32])
    	use(p100k[ui32])
    
    	use(s[i64])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %us = tfrt.constant.i32 1000
      %ch0 = "tfrt_test.blocking.usleep"(%us) : (i32) -> (!tfrt.chain)
    
      %ch1 = tfrt.merge.chains %ch, %ch0 : !tfrt.chain, !tfrt.chain
    
      %ch2 = tfrt_fallback_async.createop(%ch1) key(0) device("/CPU:0") "tf.MatMul"() {T = i32} num_args(2)
    
      %ch3, %result = tfrt_fallback_async.executeop.seq(%ch2) key(0) cost(100) device("/CPU:0") "tf.MatMul"(%a, %b) {T = i32}  : 1
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/analysis/tensor_array_side_effect_analysis.mlir

      %next_index = "tf.AddV2"(%index, %one) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:41:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

            tf_device.return %5 : tensor<i1>
          }, {
            %5 = "tf.opC"(%1#0) : (tensor<i1>) -> tensor<i32>
            tf_device.return %5 : tensor<i32>
          }) {} : () -> (tensor<i1>, tensor<i32>)
          tf_executor.yield %4#0, %4#1 : tensor<i1>, tensor<i32>
        }
        tf_executor.fetch %3#0, %3#1 : tensor<i1>, tensor<i32>
      }
      func.return
    }
    
    // CHECK:      [[INPUT_A:%.+]], {{%.+}} = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top