Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,857 for someOp (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

    // CHECK-SAME: dialect = "bar"
    // CHECK: bar.a
    // CHECK: bar.b
    // CHECK: bar.c
    // CHECK: func [[foo]]
    // CHECK: foo.someop
    // CHECK: call [[bar]]
    
    // -----
    
    func.func @handles_nested_regions(%arg0: f32, %arg1: f32) {
      %0 = "glue.someop"() : () -> f32
      "foo.someop"() ({
        "foo.some_other_op"() ({
          "bar.a"(%arg0) : (f32) -> f32
          "bar.b"(%arg1) : (f32) -> f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_arguments.mlir

    func.func private @handles_multiple_returns(%arg0: f32, %arg1: f32) -> (f32, f32) {
      "SomeOp"() : () -> ()
     ^bb0:
      return %arg0, %arg1 : f32, f32
     ^bb1:
      return %arg1, %arg0 : f32, f32
    }
    
    // -----
    
    // CHECK-LABEL: @removes_multiple_returns
    func.func private @removes_multiple_returns(%arg0: f32, %arg1: f32) -> (f32, f32) {
      "SomeOp"() : () -> ()
     ^bb0:
      // CHECK: return
      // CHECK-NOT: arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 23:00:44 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_global_tensors.mlir

      %graph:2 = tf_executor.graph {
        %value, %value_control = tf_executor.island wraps "tf.GetKey"() : () -> tensor<f32>
        %ret0, %ret0_control = tf_executor.island wraps "tf.SomeOp"() : () -> !tf_res
        %ret1, %ret1_control = tf_executor.island wraps "tf.SomeOp"() : () -> !tf_res
        %control_unknown = tf_executor.island wraps "tf.UnknownOp"() : () -> ()
        %key, %key_control = tf_executor.island wraps "tf.GetKey"() : () -> !tf_str
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 03:07:35 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

    
    // CHECK-LABEL: func @testControlOperands
    func.func @testControlOperands() {
      %0:2 = tf_executor.graph {
        %1 = tf_executor.island {
          "tf.someOp"() : () -> ()
          tf_executor.yield
        }
        %2:3 = tf_executor.island(%1) {
          %3:2 = "tf_device.parallel_execute"() ({
            %4 = "tf.opA"() : () -> tensor<i1>
            tf_device.return %4 : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/attributes.mlir

      func.return
    }
    
    // CHECK-LABEL: func @resource
    func.func @resource() {
      // CHECK: tf.SomeOp
      // CHECK-SAME: dtype = !corert.resource
      "tf.SomeOp"() {device = "/device:CPU:0", dtype = !tf_type.resource} : () -> ()
      func.return
    }
    
    // CHECK-LABEL: func @variant
    func.func @variant(%arg: tensor<!tf_type.variant>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    func.func @simple_independent_chains_while_cond(%arg0: !tf_res, %arg1: !tf_res, %arg2: tensor<f32>, %arg3: tensor<f32>) -> (tensor<i32>) {
      %graph = tf_executor.graph {
        %island, %ctrl = tf_executor.island {
          %pred = "tf.SomeOp"(%arg2) : (tensor<f32>) -> tensor<i32>
          tf_executor.yield %pred : tensor<i32>
        }
        tf_executor.fetch %island : tensor<i32>
      }
      func.return %graph : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mark_input_output_aliases.mlir

      "tf.AssignVariableOp"(%arg0, %device_output) : (!tf_res_i32, tensor<i32>) -> ()
      "tf.SomeOp"(%device_output) : (tensor<i32>) -> ()
      func.return
    }
    
    // CHECK-LABEL: func @device_func_1
    // CHECK-NOT: tf.aliasing_output
    func.func @device_func_1(%arg0: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

    
    // CHECK-LABEL: func @testControlOperands
    func.func @testControlOperands() {
      %0:2 = tf_executor.graph {
        %1 = tf_executor.island {
          "tf.someOp"() : () -> ()
          tf_executor.yield
        }
        %2:3 = tf_executor.island(%1) {
          %3:2 = "tf_device.parallel_execute"() ({
            %4 = "tf.opA"() : () -> tensor<i1>
            tf_device.return %4 : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_test.c

      if (TF_GetCode(status) != TF_OK) {
        fprintf(stderr, "TF_CloseWritableFile failed: %s\n", TF_Message(status));
      }
      TF_StringStreamDone(s);
    
      TF_KernelBuilder* b =
          TF_NewKernelBuilder("SomeOp", "SomeDevice", &create, &compute, NULL);
      TF_RegisterKernelBuilder("someKernel", b, status);
    
      TF_DeleteStatus(status);
      return 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:50:35 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.h

      // dependent attributes and types with a reverse permutation, and change
      // operation data format to `target_data_format`.
      //
      // Example:
      //   %1 = SomeOp(...)   {data_format = NHWC}
      //   %2 = Transpose(%1) {permutation = NHWC->NCHW}
      //   %3 = Op(%2)        {data_format = NCHW}
      //
      // To bypass %2 we have to change data format to shuffle data format from NCHW
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top