Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,396 for identity1 (0.18 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            includePathConfiguration.getAttributes().attribute(OPTIMIZED_ATTRIBUTE, identity.isOptimized());
            includePathConfiguration.getAttributes().attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, identity.getTargetMachine().getOperatingSystemFamily());
            includePathConfiguration.getAttributes().attribute(MachineArchitecture.ARCHITECTURE_ATTRIBUTE, identity.getTargetMachine().getArchitecture());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

            private final Identity identity;
            private final OriginMetadata originMetadata;
    
            public DefaultExecuteDeferredWorkProgressDetails(
                @Nullable String workType,
                Identity identity,
                OriginMetadata originMetadata
            ) {
                this.workType = workType;
                this.identity = identity;
                this.originMetadata = originMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

        // Scalar identity is broadcastable to any operand shape, we only need to
        // check that operand has the same shape as a result.
        bool scalar_identity = identity_ty.hasRank() && identity_ty.getRank() == 0;
        if (scalar_identity) return operand_ty == result_ty;
    
        // If identity is not a scalar, we must verify that identity shape is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CredentialsProviderFactory.java

            }
        }
    
        private static void validateIdentity(@Nullable String identity) {
            if (identity == null || identity.isEmpty() || !identity.chars().allMatch(Character::isLetterOrDigit)) {
                throw new IllegalArgumentException("Identity may contain only letters and digits, received: " + identity);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

        // CHECK:      "tf_device.cluster"
        // CHECK-NEXT:   "tf.Identity"
        // CHECK-NEXT:   "tf.B"
        // CHECK-NEXT:   "tf.Identity"
        // CHECK-NEXT:   tf_device.return
        "tf_device.cluster"() ({
          %a = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
          %b = "tf.B"(%a) {_xla_outside_compilation = "cluster1"} : (tensor<i32>) -> tensor<i32>
          %c = "tf.Identity"(%b) : (tensor<i32>) -> tensor<i32>
          tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultPlannedTransformStep.java

        private final PlannedTransformStepIdentity identity;
        private final List<? extends NodeIdentity> dependencies;
    
        public DefaultPlannedTransformStep(
            PlannedTransformStepIdentity identity,
            List<? extends NodeIdentity> dependencies
        ) {
            this.identity = identity;
            this.dependencies = dependencies;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/fused_kernel_matcher.mlir

      %1 = "tf.BiasAdd"(%0, %arg0) {data_format = "NHWC"} : (tensor<*xf32>, tensor<128xf32>) -> tensor<*xf32>
      %2 = "tf.Elu"(%1) : (tensor<*xf32>) -> tensor<*xf32>
      %3 = "tf.Identity"(%2) : (tensor<*xf32>) -> tensor<*xf32>
      %4 = "tf.Identity"(%0) : (tensor<*xf32>) -> tensor<*xf32>
      func.return %3, %4 : tensor<*xf32>, tensor<*xf32>
    }
    
    // CHECK-LABEL: conv2DBiasAdd_biasAddMultipleUse
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

                                                   device_attr, op, result);
          if (failed(res)) return WalkResult::interrupt();
        } else if (auto identity = dyn_cast<IdentityOp>(op)) {
          LLVM_DEBUG(dump("Visiting ", identity));
          // Try to construct IdentityOp's attribute from recorded assignment.
          if (!GetDeviceAttr(op).empty()) return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

          %2 = "tf.Identity"(%arg0) : (tensor<f32>) -> tensor<f32> loc("identity@some_function")
          "tf_executor.yield"(%2) : (tensor<f32>) -> () loc("identity@some_function")
        }) : () -> (tensor<f32>, !tf_executor.control) loc("identity@some_function")
        "tf_executor.fetch"(%1#0) : (tensor<f32>) -> () loc(unknown)
      }) : () -> tensor<f32> loc(unknown)
      "func.return"(%0) : (tensor<f32>) -> () loc(unknown)
    } loc(unknown)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/propagate_quantize_type.mlir

        return %1 : tensor<*xbf16>
      }
    
    // CHECK-LABEL: func @propagate_xladotv2_bf16
    // CHECK: %[[IDENTITY:.*]] = "tf.Identity"(%cst) : (tensor<2x1024xi8>) -> tensor<2x1024xi8>
    // CHECK: %[[MATMUL:.*]] = "tf.XlaDotV2"(%arg0, %[[IDENTITY]]) <{dimension_numbers = "\12\01\00\0A\01\03", precision_config = ""}> {device = ""} : (tensor<1x2x2x2xbf16>, tensor<2x1024xi8>) -> tensor<1x2x2x1024xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top