Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for functionName (0.15 sec)

  1. tensorflow/cc/saved_model/loader.cc

    }
    
    static Status ValidateFunctionNotRecursive(const FunctionDef& function) {
      const auto& function_name = function.signature().name();
      for (const auto& node : function.node_def()) {
        if (node.op() == function_name) {
          return absl::FailedPreconditionError(absl::StrCat(
              "Function ", function_name,
              " is self recursive and TensorFlow does not support this scenario."));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

                   const Graph& graph,
                   const FunctionLibraryDefinition& function_library),
                  (const, override));
      MOCK_METHOD(Status, Run,
                  (const std::string& function_name,
                   const ConfigProto& config_proto, mlir::ModuleOp module,
                   const Graph& graph,
                   const FunctionLibraryDefinition& function_library),
                  (override));
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

            // quantizable op.
            if (auto call_op =
                    dyn_cast_or_null<TF::PartitionedCallOp>(defining_op)) {
              StringRef function_name =
                  mlir::cast<FlatSymbolRefAttr>(call_op.getFAttr()).getValue();
              if (function_name.contains("gather")) continue;
            }
    
            quantizable_values.push_back(input);
            // All composite functions have a single result at the moment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

    }
    
    absl::StatusOr<jit::DeviceId> InferDeviceForCluster(
        jit::DeviceInfoCache* device_info_cache, Node* n,
        const string& function_name, const FunctionLibraryDefinition& flib_def) {
      const FunctionDef* func_def = flib_def.Find(function_name);
      TF_RET_CHECK(func_def) << "Could not find " << function_name;
    
      jit::DeviceSet device_set;
    
      for (const NodeDef& ndef : func_def->node_def()) {
        VLOG(3) << ndef.DebugString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // statistics via calibration.
    //
    // This preset is equivalent to the following `QuantizationSpecs`:
    //
    // ```
    // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
    // specs {
    //   matcher {function_name {regex: "composite_conv.*"}}
    //   method {static_range_ptq {
    //     input_quantized_types {
    //       key: 1
    //       value {dimension_specs {dimension: 3}}}
    //   }}
    // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    // interactive starts a shell to read pprof commands.
    func interactive(p *profile.Profile, o *plugin.Options) error {
    	// Enter command processing loop.
    	o.UI.SetAutoComplete(newCompleter(functionNames(p)))
    	configure("compact_labels", "true")
    	configHelp["sample_index"] += fmt.Sprintf("Or use sample_index=name, with name in %v.\n", sampleTypes(p))
    
    	// Do not wait for the visualizer to complete, to allow multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  7. doc/go_spec.html

    	a bit.
    -->
    
    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] .
    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. tensorflow/compiler/jit/compilability_check_util.h

     public:
      // Contains node name and function name. If the node is not inside a function
      // body, function name is an empty string.
      struct StackFrame {
        std::string name;
        std::string function_name;
        std::shared_ptr<AbstractStackTrace> stack_trace;
      };
    
      // Contains information about uncompilable node inside a function body.
      struct UncompilableNodeInfo {
        std::string name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        AddNodeAttr("Targs", arg_types, &def);
        AddNodeAttr("Nresources", num_variables, &def);
        AddNodeAttr("Tresults", output_types, &def);
        NameAttrList function;
        function.set_name(xla_function_info.function_name);
        AddNodeAttr("function", function, &def);
    
        for (Node* node : nodes_to_remove) {
          VLOG(2) << "Deleting node " << node->DebugString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler.h

      // entry) do not get freed until the lambda has finished.
      const std::string& function_name = function.name();
      async_compiler_threads_->Schedule([=] {
        VLOG(2) << "Starting asynchronous compilation of cluster " << function_name
                << '.';
        // We don't need to lock mu, but do it anyway to satisfy thread safety
        // analysis.
        mutex mu;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top