Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 227 for f32 (0.03 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize_functional_ops.mlir

    // CHECK-LABEL: main
    func.func @main(%arg0: tensor<f32>, %arg1: tensor<f32>) -> (tensor<f32>) {
      // CHECK: %[[INPUT0:.*]] = "tf.Placeholder.input"
      %0 = "tf.Placeholder.input"(%arg0) : (tensor<f32>) -> tensor<f32>
      // CHECK: %[[INPUT1:.*]] = "tf.Placeholder.input"
      %1 = "tf.Placeholder.input"(%arg1) : (tensor<f32>) -> tensor<f32>
      %2 = arith.constant dense<true> : tensor<i1>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/constant_op_device_assignment.mlir

      %0 = "tf.Const"() {value = dense<2.000000e+00> : tensor<f32>} : () -> tensor<f32>
      %1 = "tf.AddV2"(%0, %0) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : (tensor<f32>, tensor<f32>) -> tensor<f32>
      %2 = "tf.AddV2"(%0, %0) {device = "/job:worker/replica:0/task:0/device:CPU:1"} : (tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return
    }
    
    // CHECK: func @no_change_test
    func.func @no_change_test() -> ()  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

          "tf.Yield"(%recv) : (tensor<f32>) -> ()
        }, {
          %add = "tf.Add"(%arg1, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
          "tf.Yield"(%add) : (tensor<f32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<f32>
      // CHECK: _xla_token_input_nodes = ["_xla_token_arg_node"]
    
      func.return %0, %1 : tensor<f32>, tensor<f32>
    }
    
    
    // Next four functions are used to verify handling of a call chain.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/pre_calibration_component.mlir

    // CHECK: %[[XLA_CALL_MODULE:.+]] = "tf.XlaCallModule"(%[[CUSTOM_AGGREGATOR_0]], %[[CST]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/optimize.mlir

    }
    
    // CHECK-LABEL: not_fold_cast_fft_to_rfft
    func.func @not_fold_cast_fft_to_rfft(%arg0: tensor<10x20x30xcomplex<f64>>) -> tensor<10x20x30xcomplex<f32>> {
      %0 = "tf.Cast"(%arg0) : (tensor<10x20x30xcomplex<f64>>) -> tensor<10x20x30xcomplex<f32>>
      %1 = "tf.FFT"(%0) : (tensor<10x20x30xcomplex<f32>>) -> tensor<10x20x30xcomplex<f32>>
      func.return %1: tensor<10x20x30xcomplex<f32>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_trait_folds.mlir

      %0 = "tf.Conj"(%arg0) : (tensor<complex<f32>>) -> tensor<complex<f32>>
      %1 = "tf.Conj"(%0) : (tensor<complex<f32>>) -> tensor<complex<f32>>
      // CHECK: return [[ARG0]]
      func.return %1: tensor<complex<f32>>
    }
    
    // CHECK-LABEL: func @testTripleConj
    // CHECK-SAME:  ([[ARG0:%.+]]: tensor<complex<f32>>)
    func.func @testTripleConj(%arg0: tensor<complex<f32>>) -> tensor<complex<f32>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/analysis/tensor_array_side_effect_analysis.mlir

    // expected-remark@+1 {{HasAtMostTensorArrayEffect: 1}}
    func.func @test_tensor_array_effect(%index: tensor<i32>, %size: tensor<i32>, %flow_0: tensor<f32>, %flow_1: tensor<f32>, %handle_0: tensor<2x!tf_type.resource<tensor<?x100xf32>>>, %handle_1: tensor<2x!tf_type.resource<tensor<?x512xf32>>>) -> (tensor<i32>, tensor<i32>, tensor<f32>, tensor<f32>, tensor<2x!tf_type.resource<tensor<?x100xf32>>>, tensor<2x!tf_type.resource<tensor<?x512xf32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:41:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/svdf.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(tensor<4 x f32>, tensor<4 x f32>, tensor<4 x f32>, tensor<4 x f32>) -> tensor<4 x f32> {
    // CHECK:      {
    // CHECK-NEXT:     version: 3,
    // CHECK-NEXT:     operator_codes: [ {
    // CHECK-NEXT:       deprecated_builtin_code: 27,
    // CHECK-NEXT:       version: 1,
    // CHECK-NEXT:       builtin_code: SVDF
    // CHECK-NEXT:     } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unidirectional_sequence_rnn.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(tensor<4 x f32>, tensor<4 x f32>, tensor<4 x f32>, tensor<4 x f32>) -> tensor<4 x f32> {
    // CHECK:      {
    // CHECK-NEXT:     version: 3,
    // CHECK-NEXT:     operator_codes: [ {
    // CHECK-NEXT:       deprecated_builtin_code: 35,
    // CHECK-NEXT:       version: 1,
    // CHECK-NEXT:       builtin_code: UNIDIRECTIONAL_SEQUENCE_RNN
    // CHECK-NEXT:     } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/graph-resource.mlir

    // CHECK:       ENTRY %main.{{[0-9]+}} ([[ARG0:.*]]: f32[2], [[ARG1:.*]]: f32[2]) -> (f32[2]) {
    // CHECK-NEXT:    %[[ARG1]] = f32[2]{0} parameter(1)
    // CHECK-NEXT:    %[[ARG0]] = f32[2]{0} parameter(0)
    // CHECK-NEXT:    ROOT %tuple.{{[0-9]+}} = (f32[2]{0}) tuple(f32[2]{0} %[[ARG0]])
    // CHECK-NEXT:  }
    
    // CHECK:       // InputMapping {0, 1}
    // CHECK-NEXT:  // XlaInputShape f32[2]
    // CHECK-NEXT:  // XlaInputShape f32[2]
    // CHECK-NEXT:  // XlaOutputShape (f32[2])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top