Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,191 for someOp (0.14 sec)

  1. 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)
  2. 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)
  3. tensorflow/c/ops_test.cc

    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    TEST(OpsTest, TestBasicOpRegistration) {
      TF_OpDefinitionBuilder* builder = TF_NewOpDefinitionBuilder("SomeOp");
      TF_OpDefinitionBuilderAddAttr(builder, "attr1: string");
      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
      TF_OpDefinitionBuilderAddInput(builder, "input2: uint16");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

    // CHECK-NEXT: = "tf.Const"
    // CHECK-NEXT: = "tf.SomeOp"
    // CHECK-NEXT: = "tf.TPUPartitionedOutput"
    // CHECK-NEXT: = "tf.TPUReplicatedOutput"
        %const_out, %const_control = tf_executor.island wraps "tf.Const"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", value = dense<2.0> : tensor<4x4xf32>} : () -> tensor<4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      %index = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %elem = "tf._SomeOp"() : () -> tensor<3xf32>
      %flow = "tf.Const"() {value = dense<1.0> : tensor<f32>} : () -> tensor<f32>
      // CHECK: %[[BR_INDEX:.*]] = "tf.SomeOp"() : () -> tensor<i32>
      %branch_index = "tf.SomeOp"() : () -> tensor<i32>
      // CHECK: "tf.CaseRegion"(%[[BR_INDEX]]) {{.*}} ({
      "tf.CaseRegion"(%branch_index) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %tl_0 = "tf.TensorListReserve"(%elem_shape, %size) : (tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<?x1xf32>>>
        %elem_0 = "tf.SomeOp"() : () -> tensor<16x1xf32>
        %elem_1 = "tf.SomeOp"() : () -> tensor<16x1xf32>
        %elem_2 = "tf.SomeOp"() : () -> tensor<8x1xf32>
        %tl_1 = "tf.IfRegion"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      "tf_device.cluster"() ({
        // expected-error@+1 {{Result #0 is not tied to arg #0 of the body}}
        %1 = "tf.WhileRegion"(%0) ({
          ^bb0(%carg0:tensor<*x!tf_type.resource<tensor<f32>>>):
            %cond = "tf.SomeOp"() : () -> tensor<i1>
            "tf.Yield"(%cond) : (tensor<i1>) -> ()
          }, {
          ^bb0(%carg0:tensor<*x!tf_type.resource<tensor<f32>>>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            buildFile << """
                task someDep
                task someOtherDep
                task someTask(dependsOn: [someDep, someOtherDep])
            """
    
            expect:
            2.times {
                executer.withTasks("someTask").withArguments("-x", "sODep").run().assertTasksExecuted(":someDep", ":someTask")
                executer.withTasks("someTask").withArguments("-x", ":sODep").run().assertTasksExecuted(":someDep", ":someTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top