Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for functionName (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    using ::mlir::quant::stablehlo::CreateMlirContextForQuantization;
    using ::mlir::quant::stablehlo::ExportOptions;
    using ::mlir::quant::stablehlo::FunctionAlias;
    using ::mlir::quant::stablehlo::FunctionName;
    using ::mlir::quant::stablehlo::GetFunctionAliases;
    using ::mlir::quant::stablehlo::kExportStepSuffix;
    using ::mlir::quant::stablehlo::PostCalibrationComponent;
    using ::mlir::quant::stablehlo::PreCalibrationComponent;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        const std::vector<std::string>& signature_keys,
        const std::unordered_set<std::string>& tags,
        const QuantizationConfig& quantization_config,
        absl::string_view debug_name_prefix,
        const absl::flat_hash_map<FunctionName, FunctionAlias>& function_aliases,
        MLIRContext& ctx ABSL_ATTRIBUTE_LIFETIME_BOUND, ModuleOp module_op) {
      TF_ASSIGN_OR_RETURN(const std::string checkpoint_dir, GetLocalTmpFileName());
      const ExportOptions export_opts = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    
    typealias ParameterNamesSupplier = (String) -> List<String>?
    
    
    private
    fun ParameterNamesSupplier.parameterNamesFor(typeName: String, functionName: String, parameterTypeNames: List<String>): List<String>? =
        this("$typeName.$functionName(${parameterTypeNames.joinToString(",")})")
    
    
    /**
     * Provides [ApiType] instances by Kotlin source name from a class path.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

        ): List<FunctionResolutionAndBinding> {
            val receiverType = getDataType(receiver) as? DataClass
                ?: return emptyList()
            val functionName = functionCall.name
            val matchingMembers = receiverType.memberFunctions.filter { it.simpleName == functionName }
            // TODO: support optional parameters?
            // TODO: support at least minimal overload resolution?
            val args = functionCall.args
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. internal/s3select/sql/parser.go

    	// Used during evaluation for aggregation funcs
    	aggregate *aggVal
    }
    
    // SimpleArgFunc represents functions with simple expression
    // arguments.
    type SimpleArgFunc struct {
    	FunctionName string `parser:" @(\"AVG\" | \"MAX\" | \"MIN\" | \"SUM\" |  \"COALESCE\" | \"NULLIF\" | \"TO_STRING\" | \"TO_TIMESTAMP\" | \"UTCNOW\" | \"CHAR_LENGTH\" | \"CHARACTER_LENGTH\" | \"LOWER\" | \"UPPER\") "`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

             *
             * TODO: once we have identity-aware configuring functions, include the arguments in this key.
             */
            data class CanMergeBlock(
                val functionName: String,
                val configuredTypeName: FqName
            ) : MergeKey
        }
    
        fun interface MergeKeyMapper {
            fun mapNodeToMergeKey(node: DeclarativeDocument.DocumentNode): MergeKey
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. internal/s3select/sql/funceval.go

    	errNonTimestampArg   = errors.New("Expected a timestamp argument")
    )
    
    func (e *FuncExpr) getFunctionName() FuncName {
    	switch {
    	case e.SFunc != nil:
    		return FuncName(strings.ToUpper(e.SFunc.FunctionName))
    	case e.Count != nil:
    		return aggFnCount
    	case e.Cast != nil:
    		return sqlFnCast
    	case e.Substring != nil:
    		return sqlFnSubstring
    	case e.Extract != nil:
    		return sqlFnExtract
    	case e.Trim != nil:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    		unlike methods in the middle of a chain, it can take arguments.
    		The result is the value of calling the method with the
    		arguments:
    			dot.Method(Argument1, etc.)
    	functionName [Argument...]
    		The result is the value of calling the function associated
    		with the name:
    			function(Argument1, etc.)
    		Functions and function names are described below.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      // user-provided specs are appended.
      //
      // It should look like:
      //
      // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
      // specs {
      //   matcher {function_name {regex: "composite_conv.*"}}
      //   method {static_range_ptq {...}}}
      // }
      // specs {
      //   matcher {function_name {regex: "composite_dot_general_fn_1"}}
      //   method {no_quantization {}}
      // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                                             StringRef function_name) const {
        // Disable quantization for the DepthwiseConv since it has no benefits in
        // the XLA opset.
        if (function_name.contains("depthwise_conv2d")) {
          return absl::InternalError(
              "DepthwiseConv2D doesn't get any benefit of quantization in XLA.");
        } else if (function_name.contains("conv2d")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top