Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for convertOp (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      return axis < 0 ? axis + rank : axis;
    }
    
    /// Returns a `ConvertOp` that casts the elements to a i64 type while retaining
    /// the shape of the input value.
    static ConvertOp CastValueToI64(Location loc, Value value,
                                    PatternRewriter *rewriter) {
      return rewriter->create<ConvertOp>(loc, value, rewriter->getIntegerType(64));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            &result_types);
    
        // Create a new if op with new operands and updated result types.
        auto converted = rewriter.create<TF::IfOp>(
            op.getLoc(), result_types, adaptor.getOperands(), op->getAttrs());
        converted->removeAttr("T");
        (void)UpdateFunctionTypesForIfOp(rewriter, converted, adaptor.getOperands(),
                                         tensor_list_args, resized_tensor_lists,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                for (expr in this@convertVarargsExpression) {
                    val converted = expr.convertConstantExpression(builder) ?: continue
    
                    if ((expr is FirSpreadArgumentExpression || expr is FirNamedArgumentExpression) && converted is KaArrayAnnotationValue) {
                        addAll(converted.values)
                    } else {
                        add(converted)
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

          T defaultType = (T) getFirstTypeParameter(type.getType());
          return defaultType;
        }
        if (type.getRawType() == Converter.class) {
          TypeToken<?> convertFromType = type.resolveType(Converter.class.getTypeParameters()[0]);
          TypeToken<?> convertToType = type.resolveType(Converter.class.getTypeParameters()[1]);
          @SuppressWarnings("unchecked") // returns default for both F and T
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/NullPointerTester.java

          T defaultType = (T) getFirstTypeParameter(type.getType());
          return defaultType;
        }
        if (type.getRawType() == Converter.class) {
          TypeToken<?> convertFromType = type.resolveType(Converter.class.getTypeParameters()[0]);
          TypeToken<?> convertToType = type.resolveType(Converter.class.getTypeParameters()[1]);
          @SuppressWarnings("unchecked") // returns default for both F and T
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    using CustomOpMap = std::unordered_map<std::string, CustomOpInfo>;
    
    // Applies dynamic range quantization for the given model wehre the input_model
    // type is flatbuffer but is converted to MLIR during quantization process and
    // then converted back to flatbuffer for return. Note that this is part of
    // reaching feature parity with the old quantizer for dynamic range
    // quantization, specifically for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

        }
    
        /**
         * Converts the given object into a {@code JavaVersion}.
         *
         * @param value An object whose toString() value is to be converted. May be null.
         * @return The version, or null if the provided value is null.
         * @throws IllegalArgumentException when the provided value cannot be converted.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val children = projects.groupBy { it.path.parent }
            val converted = mutableMapOf<Path, BuildStructureOperationProject>()
            for (project in projects) {
                convertProject(converted, project, rootProjectName, children)
            }
            return converted.getValue(Path.ROOT)
        }
    
        private
        fun convertProject(
            converted: MutableMap<Path, BuildStructureOperationProject>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

        const absl::flat_hash_set<std::string> &denylisted_nodes = {},
        bool enable_variable_quantization = false,
        bool disable_per_channel_for_dense_layers = false,
        const std::optional<const tensorflow::converter::DebugOptions>
            &debug_options = std::nullopt);
    
    }  // namespace lite
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                fqid == 'validation:property-validation:unsupported-notation'
                contextualLabel == 'Property \'input\' has unsupported value \'task \':dependencyTask\'\''
                details == "Type 'DefaultTask' cannot be converted to a $targetType"
                solutions == [
                    'Use a String or CharSequence path, for example \'src/main/java\' or \'/usr/include\'',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top