Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,865 for Cast (0.82 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

    import org.gradle.api.publish.maven.internal.validation.MavenPublicationErrorChecker;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.api.tasks.TaskProvider;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.util.internal.CollectionUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

          location, split_dim_type, split_dimension_attr);
    
      // Correctly set output shapes of split op output if input shape is statically
      // known.
      mlir::Type output_type;
      auto input_type = mlir::cast<mlir::TensorType>(src_input.getType());
    
      if (input_type.hasRank()) {
        if (input_type.getShape()[split_dimension] == mlir::ShapedType::kDynamic) {
          output_type = input_type;
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

          // Proceeds only if the casting is to float16
          if (!new_result_type.getElementType().isF16()) continue;
    
          // Cast values
          std::vector<Eigen::half> new_values;
          DenseFPElementsAttr value_attr =
              mlir::cast<DenseFPElementsAttr>(op.getValue());
          new_values.reserve(value_attr.getNumElements());
    
          constexpr float kMaxFloat16Value = 65504.f;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandler.java

    import org.gradle.api.internal.provider.ProviderInternal;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.provider.ProviderConvertible;
    import org.gradle.internal.Cast;
    import org.gradle.internal.metaobject.MethodAccess;
    import org.gradle.internal.metaobject.MethodMixIn;
    import org.gradle.util.internal.ConfigureUtil;
    
    import javax.annotation.Nullable;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MultimapBuilder.java

       *
       * <p>For all multimaps generated by the resulting builder, the {@link Multimap#keySet()} can be
       * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be
       * cast to a {@link java.util.SortedMap}.
       */
      @SuppressWarnings("rawtypes")
      public static MultimapBuilderWithKeys<Comparable> treeKeys() {
        return treeKeys(Ordering.natural());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MultimapBuilder.java

       *
       * <p>For all multimaps generated by the resulting builder, the {@link Multimap#keySet()} can be
       * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be
       * cast to a {@link java.util.SortedMap}.
       */
      @SuppressWarnings("rawtypes")
      public static MultimapBuilderWithKeys<Comparable> treeKeys() {
        return treeKeys(Ordering.natural());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %0 = "tfl.cast"(%cst) : (tensor<4xui8>) -> tensor<4xi8>
      func.return %0 : tensor<4xi8>
    
    // CHECK: %[[CST:.*]] = arith.constant dense<[0, -1, 127, -128]> : tensor<4xi8>
    // CHECK:  return %[[CST]]
    }
    
    // CHECK-LABEL: @cast_i8_to_i32
    func.func @cast_i8_to_i32() -> tensor<4xi32> {
      %cst = arith.constant dense<[0, 128, -1, -128]> : tensor<4xi8>
      %0 = "tfl.cast"(%cst) : (tensor<4xi8>) -> tensor<4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        return size.emitOpError("unknown tensor array");
      }
      auto buffer_type = getElementTypeOrSelf(local_var.getType())
                             .cast<TF::ResourceType>()
                             .getSubtypes()[0]
                             .cast<RankedTensorType>();
      OpBuilder builder(size);
      auto result = cutil::CreateScalarConst(buffer_type.getDimSize(0), builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

     * limitations under the License.
     */
    
    package org.gradle.util;
    
    import org.apache.commons.lang.StringUtils;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Factory;
    import org.gradle.internal.InternalTransformer;
    import org.gradle.internal.IoActions;
    import org.gradle.internal.UncheckedException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

        private BuildOperationAwareLogger delegate;
        private OperationIdentifier fallbackOperationIdentifier = null;
    
        public DefaultContextAwareTaskLogger(Logger delegate) {
            this.delegate = Cast.cast(BuildOperationAwareLogger.class, delegate);
        }
    
        public MessageRewriter getMessageRewriter() {
            return delegate instanceof MessageRewritingBuildOperationAwareLogger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top