Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for functionName (0.77 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

                       std::make_move_iterator(args_with_default_val.begin()),
                       std::make_move_iterator(args_with_default_val.end()));
      return absl::Substitute("$0 $1($2)", "Status", op_.FunctionName(),
                              absl::StrJoin(arguments, ", "));
    }
    
    OpRenderer::OpRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op), comment_(context, op) {}
    
    void OpRenderer::Render() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

      return input_args_.front();
    }
    
    ArgView OpView::OnlyOutput() const {
      CHECK_EQ(output_args_.size(), 1);  // Crash OK
      return output_args_.front();
    }
    
    string OpView::FunctionName() const { return op_.name(); }
    
    string OpView::OpNameString() const { return Quoted(op_.name()); }
    
    string OpView::VariableName() const { return "op_ptr"; }
    
    std::vector<string> OpView::Description() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.h

          std::vector<std::string> signature_keys,
          std::unordered_set<std::string> tags,
          absl::flat_hash_map<std::string, tensorflow::SignatureDef>
              signature_def_map,
          absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases);
    
      // Runs the static-range post-training quantization (PTQ) on `module_op`.
      absl::StatusOr<ModuleOp> Run(
          ModuleOp module_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

                  quantization_config.tf_saved_model().tags().end());
    
      std::unique_ptr<MLIRContext> ctx = CreateMlirContextForQuantization();
    
      absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
          function_aliases = GetFunctionAliases(src_saved_model_path, tags);
      if (!function_aliases.ok()) {
        return absl::InternalError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

        const std::unordered_set<std::string>& tags,
        const ::stablehlo::quantization::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);
    
    // Factory function for `ExportedModel`.
    [[nodiscard]] tensorflow::quantization::ExportedModel
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

    CalibrationComponent::CalibrationComponent(
        absl::Nonnull<MLIRContext*> ctx,
        absl::Nonnull<const PyFunctionLibrary*> py_function_lib,
        const absl::string_view src_saved_model_path,
        absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases,
        std::unordered_set<std::string> tags,
        absl::flat_hash_map<std::string, SignatureDef> signature_def_map,
        std::vector<std::string> signature_keys)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top