Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,135 for runActions (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/mark_functions_noinline.cc

    // Required when using LLVM_DEBUG macro.
    #define DEBUG_TYPE "mark-functions-noinline"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    // Name of the boolean attribute indicating whether the function can be
    // inlined or not.
    constexpr StringRef kTfNoinlineAttr = "tf._noinline";
    
    // This pass marks functions with the attribute `tf._noinline = true` so that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 02:52:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

        test::ExpectTensorEqual<float>(
            outputs[0],
            test::AsTensor<float>({2, 2.5, 3, 3.5}, TensorShape({4, 1})));
    
        // Validate the `output_partition_graphs` is not supported.
        RunOptions run_options;
        run_options.set_output_partition_graphs(true);
        RunMetadata run_metadata;
        Status s =
            bundle.GetSession()->Run(run_options, {{input_name, input}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.txt

        inner (anonymous) class MainKt$ArticleScreenContent$2
        synthetic static method ArticleScreenContent$default(p0: java.lang.String, p1: kotlin.jvm.functions.Function0, p2: int, p3: java.lang.Object): void
        private final static method ArticleScreenContent(p0: java.lang.String, p1: kotlin.jvm.functions.Function0): void
        private final static method TopAppBar(p0: java.lang.String): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/trim_functions_tf.cc

          }
        } else {
          funcs_to_trim.push_back(func);
        }
      }
    
      // remove all unexported functions from the module.
      for (auto func : funcs_to_trim) {
        func.erase();
      }
      return true;
    }
    
    // validate that all reachable functions from the remaining functions are
    // also in the allowlist.
    void TrimFunctionsPass::Verify() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/cc/training/queue_runner.h

                                      const RunOptions& run_options = RunOptions());
    
      /// Starts the queue runner with the given session, and wait for up to the
      /// specified time (in milliseconds) for the queues to start to fill up.
      Status Start(Session* sess, int wait_for_ms);
      Status StartAndCollectCostGraph(Session* session, int wait_for_ms,
                                      const RunOptions& run_options = RunOptions());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sha3 implements the SHA-3 fixed-output-length hash functions and
    // the SHAKE variable-output-length hash functions defined by FIPS-202.
    //
    // Both types of hash function use the "sponge" construction and the Keccak
    // permutation. For a detailed specification see http://keccak.noekeon.org/
    //
    // # Guidance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/loader.cc

                             outputs);
      }
    
      Status Create(const RunOptions& run_options, const GraphDef& graph) override {
        return absl::UnimplementedError("Session::Create()");
      }
      Status Extend(const RunOptions& run_options, const GraphDef& graph) override {
        return absl::UnimplementedError("Session::Extend()");
      }
      Status Create(const RunOptions& run_options, GraphDef&& graph) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

    } CU_ErrorAction;
    
    /* Error handling & reporting functions. */
    
    #include "CUnit.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT CU_ErrorCode   CU_get_error(void);
    /**<
     *  Retrieves the current CUnit framework error code.
     *  CUnit implementation functions set the error code to indicate the
     *  status of the most recent operation.  In general, the CUnit functions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/guarantee_all_funcs_one_use.cc

    //
    // The tf-shape-inference pass doesn't support functions that have more than
    // a single use. But some real code from frontends does end up creating code
    // like that. For example, the same LSTM cell function or loop body function
    // will be reused.
    //
    // This pass clones functions as needed to establish the invariant that all
    // functions have a single use. This can in principle cause exponential code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/runtime/import_test.go

    //
    // 1. Tests use the signature "XTest<name>(t TestingT)". Since runtime can't import
    // testing, test functions can't use testing.T, so instead we have the T
    // interface, which *testing.T satisfies. And we start names with "XTest"
    // because otherwise go test will complain about Test functions with the wrong
    // signature. To actually expose these as test functions, this file contains
    // trivial wrappers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top