Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 470 for identity0 (0.24 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

    // value is a resource type then XlaSharding op will be connected to a
    // ReadVariable op. XlaSharding op may be direct user of inputs but it may also
    // be followed by an Identity op and, in the case where bfloat16 type is used,
    // Cast op may be added right after the input.
    //
    // TODO(hongjunchoi): Add logic to parse XlaSharding op inside control flow (If,
    // Case) ops and Caller return values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

      getOperation().walk([&](TFL::VarHandleOp var_handle_op) {
        auto identity = std::make_pair(var_handle_op.getContainer().str(),
                                       var_handle_op.getSharedName().str());
        resource_id_map.insert(
            std::make_pair(identity, static_cast<int>(resource_id_map.size())));
        int resource_id = resource_id_map[identity];
        resource_map[resource_id].push_back(var_handle_op);
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %0 = mhlo.composite "aten.hardswish.default" %arg0 {decomposition = @XlaCallModule_aten.hardswish.default.impl_0} : (tensor<2xf32>) -> tensor<2xf32>
      %1 = "tf.Identity"(%0) {device = ""} : (tensor<2xf32>) -> tensor<*xf32>
      %2 = "tf.Identity"(%1) {device = ""} : (tensor<*xf32>) -> tensor<*xf32>
      return %2 : tensor<*xf32>
    }
    func.func private @XlaCallModule_aten.hardswish.default.impl_0(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // CHECK: return %cst : tensor<i32>
    }
    
    func.func @identity(%arg0: tensor<10xi32>, %arg1: tensor<20xi32>, %arg2: tensor<30xi32>) -> (tensor<10xi32>, tensor<20xi32>, tensor<30xi32>, tensor<*xi32>) {
      %0 = "tf.Identity"(%arg0) : (tensor<10xi32>) -> tensor<10xi32>
      %1:2 = "tf.IdentityN"(%arg1,%arg2) : (tensor<20xi32>, tensor<30xi32>) -> (tensor<20xi32>, tensor<30xi32>)
      %2 = "tf.Identity"(%arg0) : (tensor<10xi32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/auth.go

    		if err != nil {
    			log.Warnf("Unauthorized XDS: %v with identity %v: %v", con.Peer(), identities, err)
    			return status.Newf(codes.PermissionDenied, "authorization failed: %v", err).Err()
    		}
    		con.proxy.VerifiedIdentity = id
    	}
    	return nil
    }
    
    func checkConnectionIdentity(proxy *model.Proxy, identities []string) (*spiffe.Identity, error) {
    	for _, rawID := range identities {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

    import org.gradle.internal.execution.ExecutionEngine.IdentityCacheResult;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.UnitOfWork.Identity;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.vfs.FileSystemAccess;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/utils.h

      // Get the indexes of the non-identity dimensions and the identity dimensions
      // in the input shape.
      SmallVector<int32_t> input_nonidentity_dims_index_array;
      SmallVector<int32_t> input_identity_dims_index_array;
    
      // Since the reshape is trivial, the input and output shapes should have the
      // same number of dimensions. And the non-identity dimensions must be in the
      // same cyclic order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Equivalence.java

        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      static final class Identity extends Equivalence<Object> implements Serializable {
    
        static final Identity INSTANCE = new Identity();
    
        @Override
        protected boolean doEquivalent(Object a, Object b) {
          return false;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    			hash *= 8863
    		}
    
    		// Use a separate hasher for types inside of the signature, where type
    		// parameter identity is modified to be (index, constraint). We must use a
    		// new memo for this hasher as type identity may be affected by this
    		// masking. For example, in func[T any](*T), the identity of *T depends on
    		// whether we are mapping the argument in isolation, or recursively as part
    		// of hashing the signature.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoUtils.kt

                )
                is ObjectReflection.DataObjectReflection -> {
                    append(current.type.toString() + (if (current.identity.invocationId != -1L) "#" + current.identity else "") + " ")
                    if (visitedIdentity.add(current.identity)) {
                        append("{\n")
                        current.properties.forEach {
                            append(nextIndent() + it.key.name + " = ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top