Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Func1 (0.04 sec)

  1. tensorflow/c/c_api_function_test.cc

    TEST_F(CApiFunctionTest, SameGradForTwoFunctions) {
      // Define the functions
      TF_Function* func1;
      TF_Function* func2;
      TF_Function* grad_func;
      DefineFunction("FooFunc1", &func1);
      DefineFunction("FooFunc2", &func2);
      DefineFunction("MyGrad", &grad_func);
    
      // Make grad_func be a gradient of func1 and func2
      TF_GraphCopyFunction(host_graph_, func1, grad_func, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		if err := p.CheckValid(); err != nil {
    			t.Fatalf("invalid profile: %v", err)
    		}
    
    		stks := stacks(p)
    		for _, want := range [][]string{
    			{"sync.(*Mutex).Unlock", "runtime/pprof.blockMutexN.func1"},
    		} {
    			if !containsStack(stks, want) {
    				t.Errorf("No matching stack entry for %+v", want)
    			}
    		}
    
    		i := 0
    		for ; i < len(p.SampleType); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	if staticLockRanking {
    		// When static lock ranking is enabled, we'll always be on the system
    		// stack at this point. There will be a runtime.unlockWithRank.func1
    		// frame, and if the call to runtime.unlock took place on a user stack
    		// then there'll also be a runtime.systemstack frame. To keep stack
    		// traces somewhat consistent whether or not static lock ranking is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top