Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,543 for identity1 (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
        func @my_fn(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
          %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
          %identity_n:2 = "tf.IdentityN"(%arg1, %identity) : (tensor<i32>, tensor<i32>) -> (tensor<i32>, tensor<i32>)
          return %identity, %identity_n#0 : tensor<i32>, tensor<i32>
        }
        ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

        }
    
        /**
         * Determine the identity of the work unit that uniquely identifies it
         * among the other work units of the same type in the current build.
         */
        Identity identify(Map<String, ValueSnapshot> identityInputs, Map<String, CurrentFileCollectionFingerprint> identityFileInputs);
    
        interface Identity {
            /**
             * The identity of the work unit that uniquely identifies it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-platform/multiproject/kotlin/buildSrc/src/main/kotlin/myproject.identity-conventions.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/maven-publish/customize-identity/tests/publish-customize-identity.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

    // convert the output type to the next op. Here are the transformations:
    //
    // input   min cst       max cst              input
    //  \       |             |                     |
    //   \  (tf.Identity) (tf.Identity)   =>   quant.qcast
    //    \     |             |                     |
    //       tf.FakeQuantWithMinMaxVars        quant.dcast
    //                   |                          |
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ToPlannedNodeConverter.java

     * The converter can obtain the node identity for each node of the supported type via {@link #getNodeIdentity(Node)}.
     * <p>
     * Instances of this class are expected to be thread-safe.
     */
    @NonNullApi
    @ThreadSafe
    public interface ToPlannedNodeConverter {
    
        /**
         * Type of node that this converter can identify and convert to a planned node.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 15:00:56 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

          tf_executor.yield
        }
        tf_executor.fetch %island : !tf_executor.control
      }
      func.return
    }
    
    // -----
    // Tests handling of Cast, Identity, and IdentityN
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @aliasing_identities
    func.func @aliasing_identities(%arg0: tensor<32xf32>) -> () {
      tf_executor.graph {
        // CHECK: tf_executor.island
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_save_function_ops_to_main.mlir

    // Test that the Identity op has been created to fetch the file prefix
    // argument. It should also have control dependency to the `SaveV2` op.
    // CHECK: %[[IDENTITY:.*]], %[[CTL_1:.*]] = tf_executor.island(%[[CTL_0]]) wraps "tf.Identity"(%[[ARG_0]])
    // CHECK: tf_executor.fetch %[[CTL_1]] : !tf_executor.control
    // CHECK: return
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    will be transformed into:
    
    ```mlir
    func @my_fn(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      %identity_n:2 = "tf.IdentityN"(%arg1, %identity) : (tensor<i32>, tensor<i32>) -> (tensor<i32>, tensor<i32>)
      return %identity, %identity_n#0 : tensor<i32>, tensor<i32>
    }
    ```
    ### `-tf-executor-tpu-v1-island-coarsening`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

                            visited_wrapped_ops, /*incoming=*/false)) {
        return failure();
      }
      return success();
    }
    
    // Whenever we find an Identity op that is unqualified, we remove this Identity
    // op from the list `tpu_ops`. An unqualified Identity op indicates either its
    // inputs or its outputs do not belong to the same cluster.
    bool ExcludeIdentityOp(llvm::SmallDenseSet<Operation*>& tpu_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top