Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,166 for Function1 (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        // functional form, all such external values need to become function
        // arguments of the outlined functions, and become pass through values in
        // the outlined body function. So when outlining the while body, in addition
        // to the region arguments, all these external references need to be added
        // as function arguments.
        llvm::SmallVector<Value, 4> extern_values =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule3.txt

    final class MainKt$ArticleScreenContent$1$1 {
        // source: 'main.kt'
        enclosing method MainKt$ArticleScreenContent$1.invoke()Lkotlin/jvm/functions/Function0;
        synthetic final field $title: java.lang.String
        inner (anonymous) class MainKt$ArticleScreenContent$1
        inner (anonymous) class MainKt$ArticleScreenContent$1$1
        method <init>(p0: java.lang.String): void
        public synthetic bridge method invoke(): java.lang.Object
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

    constexpr char kResourceFunctionMsg[] =
        "expects function level resource argument";
    constexpr char kInvalidResourceMsg[] =
        "expects resource to be a VarHandleOp or function argument";
    constexpr char kResourceNameArgAttr[] = "tf.resource_name";
    
    // Checks if a function has only one block.
    mlir::LogicalResult CheckSingleBlockFunction(func::FuncOp function) {
      if (!llvm::hasSingleElement(function)) {
        return function.emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

                        val functions = superClassSymbol.getDeclaredMemberScope().getAllSymbols()
                            .filterIsInstance<KaFunctionSymbol>()
                            .toList()
                        if (functions.isNotEmpty()) {
                            appendLine("Substituted callables:")
                            withIndent {
                                for (function in functions) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          // We'll set the resource's functions in a subsequent pass, once we get
          // all functions in a partially revived state.
          resource_revival_state.device = node.resource().device();
          objects->restored_resources[i] = std::move(resource_revival_state);
        } else if (node.kind_case() == SavedObject::kFunction) {
          // Get the SavedFunction node and skip if it has no concrete functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // function name when loading it back.
    inline constexpr StringRef kOriginalStablehloEntryFunctionAttrName =
        "_original_entry_function";
    
    // FunctionCallOpType to be generated as the function call operator when
    // function lifting will happen.
    enum FunctionCallOpType { TFPartitionedCallOp = 0, TFXlaCallModuleOp = 1 };
    
    // Checks if an op is inside a lifted function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/c/ops.h

    //----------------------------------------------------
    // Functions for TF_ShapeInferenceContext.
    //
    // Functions for implementing shape inference functions. TensorFlow uses these
    // functions to determine the shape of tensors produced by an operation without
    // having to actually run the operation. If an operation chooses to provide a
    // shape inference function, it will be invoked by TensorFlow as needed.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

                           " did not have a create_resource() function"));
        }
        const SavedConcreteFunction* saved_create_resource_fn =
            create_resource_fn->saved_concrete_func;
        if (!saved_create_resource_fn->bound_inputs().empty()) {
          // TODO(b/124045874): Support loading resource functions via a top sort
          return absl::UnimplementedError(
              "Create Resource functions with captures are currently unsupported.");
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    		p.Function = append(p.Function, function)
    
    		loc = &profile.Location{
    			ID: nextLocID,
    			Line: []profile.Line{
    				{
    					Function: function,
    				},
    			},
    		}
    		nextLocID++
    		p.Location = append(p.Location, loc)
    		locs[locKey] = loc
    		return loc
    	}
    
    	makeLabelLocs := func(s *profile.Sample, keys []string) ([]*profile.Location, bool) {
    		var locs []*profile.Location
    		var match bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

    // Base CRTP class to help write passes that are consumes a per-function
    // aggregate analysis and operate on all non-extern functions (similar to a
    // OperationPass<func::FuncOp>, but with no concurrency between functions). The
    // derived classes need to provide a runOnFunction() method that accepts the
    // function and the analysis information for that function.
    template <typename DerivedT, typename AnalysisT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top