Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,498 for runActions (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/funcdata.h

    // of pointers in an assembly function's arguments, results, and stack frame.
    // This communication is only required in assembly functions that make calls
    // to other functions that might be preempted or grow the stack.
    // NOSPLIT functions that make no calls do not need to use these macros.
    
    // GO_ARGS indicates that the Go prototype for this assembly function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    // Package unusedresult defines an analyzer that checks for unused
    // results of calls to certain functions.
    package unusedresult
    
    // It is tempting to make this analysis inductive: for each function
    // that tail-calls one of the functions that we check, check those
    // functions too. However, just because you must use the result of
    // fmt.Sprintf doesn't mean you need to use the result of every
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/sigqueue_note.go

    // The current implementation of notes on Darwin is not async-signal-safe,
    // so on Darwin the sigqueue code uses different functions to wake up the
    // signal_recv thread. This file holds the non-Darwin implementations of
    // those functions. These functions will never be called.
    
    //go:build !darwin && !plan9
    
    package runtime
    
    func sigNoteSetup(*note) {
    	throw("sigNoteSetup")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 648 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      llvm::DenseMap<func::FuncOp, llvm::DenseSet<func::FuncOp>> caller_callee_map;
    
      // Use worklist to populate the set of reachable functions.
      std::queue<func::FuncOp> function_worklist;
    
      // Iterates over all functions within the module to (1) create caller-callee
      // map, and (2) initialize function worklist with functions referenced from
      // device cluster ops.
      for (auto func : module.getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/internal/abi/stack.go

    	// the stack guard.
    	//
    	// Functions that need frames <= StackSmall can perform the stack check
    	// using a single comparison directly between the stack guard and the SP
    	// because we ensure that StackSmall bytes of stack space are available
    	// beyond the stack guard.
    	StackSmall = 128
    
    	// Functions that need frames <= StackBig can assume that neither
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/internal/abi/symtab.go

    	// SPWrite functions. Stopping at an SPWrite function is considered
    	// to be an incomplete unwinding of the stack. In certain contexts
    	// (in particular garbage collector stack scans) that is a fatal error.
    	FuncFlagSPWrite
    
    	// FuncFlagAsm indicates that a function was implemented in assembly.
    	FuncFlagAsm
    )
    
    // A FuncID identifies particular functions that need to be treated
    // specially by the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top