Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,632 for identity1 (0.2 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementAdapter.java

         */
        String getName(T element);
    
        /**
         * Returns the original identity name of the given element which
         * may be used to uniquely identify the element if the name returned
         * by getName() is not unique in the hierarchy.
         *
         * @param element the element, cannot be null
         * @return the identity name of the element, never null
         */
        String getIdentityName(T element);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      auto ctrl_dep =
          NodeWith(Op("Identity"), Inputs(Out(0, switch_on_compilation_pred)));
      // Check that we pipe int32 inputs through an IdentityN to avoid extra D2H
      // copies.
      EXPECT_THAT(
          stateful_partitioned_call_op,
          NodeWith(Inputs(Out(NodeWith(Op("IdentityN"), CtrlDeps(ctrl_dep))))));
    }
    #endif
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

        call_op_returns.append(call_op.getResults().begin(),
                               call_op.getResults().end());
        SetFunctionPrivate(func_op);
      }
    
      // Creates Identity/IdentityN ops for returing values. This allows us to
      // restore the same output tensor names in python.
      int32_t output_count = 0;
      // Map from node name to the list of the OutputInfos of its outputs that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/update_cpp_ops.sh

      //tensorflow/c/experimental/ops/gen:generate_cpp -- \
      --output_dir="${current_dir}" \
      --api_dirs="${api_dir}" \
      --source_dir=third_party/tensorflow"
    
    ${generate} \
      --category=array \
      Identity \
      IdentityN \
      ZerosLike \
      Shape \
      ExpandDims \
      OnesLike
    
    ${generate} \
      --category=math \
      Mul \
      Conj \
      AddV2 \
      MatMul \
      Neg \
      Sum \
      Sub \
      Div \
      DivNoNan \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. cluster/addons/rbac/legacy-kubelet-user/kubelet-binding.yaml

    # The GKE environments don't have kubelets with certificates that
    # identify the system:nodes group.  They use the kubelet identity
    # TODO: remove this once new nodes are granted individual identities and the
    # NodeAuthorizer is enabled.
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-cluster-admin
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 565 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top