Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,632 for identity1 (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/ivy-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
    - 31 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          return std::make_tuple(t, identity_ops);
        } else if (auto identity =
                       llvm::dyn_cast_or_null<mlir::TF::IdentityOp>(user)) {
          identity_ops.emplace_back(identity);
          result = identity->getResult(0);
        } else {
          result = OpResult();  // reset to stop iterating
        }
      } while (result);
    
      return std::make_tuple(T(), identity_ops);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/array_ops.h

    // value.
    Status Identity(AbstractContext* ctx, AbstractTensorHandle* const input,
                    AbstractTensorHandle** output, const char* name = nullptr,
                    const char* raw_device_name = nullptr);
    
    // Returns a list of tensors with the same shapes and contents as the input
    Status IdentityN(AbstractContext* ctx,
                     absl::Span<AbstractTensorHandle* const> input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

        @Override
        public Identity identify(Map<String, ValueSnapshot> identityInputs, Map<String, CurrentFileCollectionFingerprint> identityFileInputs) {
            Hasher hasher = Hashing.newHasher();
            identityInputs.values().forEach(value -> requireNonNull(value).appendToHasher(hasher));
            String identity = hasher.hash().toString();
            return () -> identity;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top