Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,148 for getDtype (0.31 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

        return failure();
      }
      lstm_variant->use_projection =
          !mlir::isa<NoneType>(op.getProjectionWeights().getType());
      lstm_variant->use_peephole =
          !mlir::isa<NoneType>(op.getCellToOutputWeights().getType());
      lstm_variant->use_layer_norm =
          !mlir::isa<NoneType>(op.getForgetLayerNormCoefficients().getType());
    
      *op_property = operator_property::GetOperatorProperty(
          *lstm_variant, activation_number_of_bits);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

            ClassWriter visitor = classGenerator.getVisitor();
    
            Type generatedType = classGenerator.getGeneratedType();
    
            Type superclassType = Type.getType(implClass);
            Type publicType = Type.getType(publicContractType);
    
            generateClass(visitor, generatedType, superclassType, publicType);
            generateConstructors(visitor, implClass, superclassType);
            visitor.visitEnd();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                changeConsumer.visitChange(added);
                current = nextEntry(currentEntries);
            }
    
            void removed() {
                DefaultFileChange removed = DefaultFileChange.removed(previous.getKey(), propertyTitle, previous.getValue().getType(), previous.getValue().getNormalizedPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/FactoryBasedStructNodeInitializerExtractionStrategy.java

                return null;
            }
            NodeInitializer nodeInitializer = getNodeInitializer(Cast.<ModelSchema<? extends T>>uncheckedCast(schema));
            if (nodeInitializer == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    bool HasEqualElementSize(Value val1, Value val2, ArrayRef<int> val1_indices,
                             ArrayRef<int> val2_indices) {
      ShapedType val1_shape = mlir::cast<ShapedType>(val1.getType());
      ShapedType val2_shape = mlir::cast<ShapedType>(val2.getType());
      if (!val1_shape.hasRank() || !val2_shape.hasRank()) return false;
    
      int val1_result = 1;
      int val2_result = 1;
      for (auto idx : val1_indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            int type = be.getOperation().getType();
            if ((type == Types.ASSIGNMENT_OPERATOR || type == Types.EQUAL)
                && left instanceof ClassExpression) {
                ClassExpression ce = (ClassExpression) left;
                String error = "you tried to assign a value to the class '" + ce.getType().getName() + "'";
                if (ce.getType().isScript()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

            DocLink documentationUrl = featureUsage.getDocumentationUrl();
            return documentationUrl == null ? null : documentationUrl.getUrl();
        }
    
        @Override
        public String getType() {
            return featureUsage.getType().name();
        }
    
        @Override
        public List<StackTraceElement> getStackTrace() {
            return diagnostics.getStack();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

            FileMetadata fileMetadata = stat.stat(root);
            if (fileMetadata.getType() == FileType.RegularFile) {
                visitJarContents(root, visitor);
            } else if (fileMetadata.getType() == FileType.Directory) {
                visitDirectoryContents(root, visitor);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

          // Because of the property of graph region, the control operands may
          // not have been converted to tf_executor::ControlType.
          if (mlir::isa<tfg::ControlType>(value.getType()) ||
              mlir::isa<tf_executor::ControlType>(value.getType())) {
            if (!mlir::isa<BlockArgument>(value))
              island_control_operands.push_back(value);
          } else {
            inner_op_operands.push_back(value);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        auto input_type = mlir::dyn_cast_or_null<RankedTensorType>(input.getType());
        if (!input_type) return failure();
        auto fft_len = rfft_op.getFftLength();
        auto fft_len_type = mlir::dyn_cast_or_null<ShapedType>(fft_len.getType());
        if (!fft_len_type) return failure();
    
        auto output_type =
            mlir::dyn_cast_or_null<RankedTensorType>(rfft_op.getResult().getType());
        if (!output_type) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top