Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for runActions (0.2 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      std::vector<Tensor> outputs(noutputs);
      Status result;
    
      if (handle == nullptr) {
        RunOptions run_options_proto;
        if (run_options != nullptr && !run_options_proto.ParseFromArray(
                                          run_options->data, run_options->length)) {
          status->status = InvalidArgument("Unparseable RunOptions proto");
          return;
        }
        if (run_metadata != nullptr && run_metadata->data != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
        ListOption<"functions_", "functions", "std::string",
                   "Comma separated list of functions whose resources "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          original_func_mlir_names.insert(kv.second);
      }
    
      // Prefix private functions with the unique signature name, so that it cannot
      // collide with private functions used in the other signatures.
      for (auto func : sub_module.getOps<mlir::func::FuncOp>()) {
        if (mlir::tf_saved_model::IsExported(func)) continue;
    
        // Skip the original functions from graphdef library
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    	}()
    	return 6
    }
    </pre>
    
    <h2 id="Built-in_functions">Built-in functions</h2>
    
    <p>
    Built-in functions are
    <a href="#Predeclared_identifiers">predeclared</a>.
    They are called like any other function but some of them
    accept a type instead of an expression as the first argument.
    </p>
    
    <p>
    The built-in functions do not have standard Go types,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                              int64_t max_iterations);
    
      // Updates input types and refine shapes inside body of functions that are
      // attached to ControlFlow ops (If/While) or Calls. These functions include
      // Then/Else branches of IfOp and Cond/Body functions of WhileOp. Functions
      // attached to control flow share following common properties:
      //   1) They are never reused, ie. having a single use in module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<BufferOffset<tflite::SignatureDef>> signature_defs_buffer;
      // When we export each function in the module op, intentionally, we export
      // the entry functions at the beginning of the subgraph list and the
      // subgraph_index is the index in entry functions and at the same, is the
      // index in the subgraph list.
      int subgraph_index = 0;
      for (const auto& signature_def_data : signature_defs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
      n->ClearAttr("Tin");
      n->AddAttr("Tin", data_types);
    
      // Add edges from outside compilation nodes to If node. If node's input #0
      // is predicate input, input #1 maps to _Arg #0 of branch functions, thus
      // arg_to_input_edge_offset is set to 1.
      AddEdgesFromOutsideCompilationNodes(original_arg_count,
                                          /*arg_to_input_edge_offset=*/1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "es-abstract": "^1.19.0",
            "functions-have-names": "^1.2.2"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/functions-have-names": {
          "version": "1.2.3",
          "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the discussion in the {@link ListenableFuture#addListener} documentation. All its warnings
       * about heavyweight listeners are also applicable to heavyweight functions passed to this method.
       * (Specifically, {@code directExecutor} functions should avoid heavyweight operations inside
       * {@code AsyncClosingFunction.apply}. Any heavyweight operations should occur in other threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top