Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Func1 (0.29 sec)

  1. src/crypto/sha1/sha1block_arm.s

    	MOVW	Rb@>(32-30), Rb	 ; \
    	ADD	Ra@>(32-5), Re, Re ; \
    	ADD	Rconst, Re, Re
    
    #define ROUND1(Ra, Rb, Rc, Rd, Re) \
    	LOAD(Re)		; \
    	FUNC1(Ra, Rb, Rc, Rd, Re)	; \
    	MIX(Ra, Rb, Rc, Rd, Re)
    
    #define ROUND1x(Ra, Rb, Rc, Rd, Re) \
    	SHUFFLE(Re)	; \
    	FUNC1(Ra, Rb, Rc, Rd, Re)	; \
    	MIX(Ra, Rb, Rc, Rd, Re)
    
    #define ROUND2(Ra, Rb, Rc, Rd, Re) \
    	SHUFFLE(Re)	; \
    	FUNC2(Ra, Rb, Rc, Rd, Re)	; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. 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)
  3. src/crypto/sha1/sha1block_386.s

    	ADDL	DI, e; \
    	MOVL	a, SI; \
    	ROLL	$5, SI; \
    	LEAL	const(e)(SI*1), e
    
    #define ROUND1(a, b, c, d, e, index) \
    	LOAD(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND1x(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND2(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC2(a, b, c, d, e); \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

          /*saver_def=*/std::nullopt,
          /*function_aliases=*/{{"func1", "alias1"}, {"func2", "alias2"}},
          /*asset_file_defs=*/{});
      ASSERT_THAT(exported_model.function_aliases(), SizeIs(2));
      EXPECT_TRUE(exported_model.function_aliases().contains("func1"));
      EXPECT_THAT(exported_model.function_aliases().at("func1"), StrEq("alias1"));
      EXPECT_TRUE(exported_model.function_aliases().contains("func2"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. test/closure3.dir/main.go

    // that are expected to be inlined
    
    package main
    
    var ok bool
    var sink int
    
    func main() {
    	{
    		if x := func() int { // ERROR "can inline main.func1"
    			return 1
    		}(); x != 1 { // ERROR "inlining call to main.func1"
    			ppanic("x != 1")
    		}
    		if x := func() int { // ERROR "can inline main.func2" "func literal does not escape"
    			return 1
    		}; x() != 1 { // ERROR "inlining call to main.func2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/stacks.go

    	// on a channel, in a select or otherwise. So we kick off goroutines
    	// that need to block first in the hope that while we are executing
    	// the rest of the test, they will block.
    	go func() { // func1
    		select {}
    	}()
    	go func() { // func2
    		var c chan int
    		c <- 0
    	}()
    	go func() { // func3
    		var c chan int
    		<-c
    	}()
    	done1 := make(chan bool)
    	go func() { // func4
    		<-done1
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

      EnableIrPrinting(pm, "dump");
    
      constexpr absl::string_view program = R"mlir(
    module{
      func.func @main(%arg0: tensor<10xf32>) -> tensor<10xf32> {
        return %arg0 : tensor<10xf32>
      }
      func.func @func1(%arg0: tensor<10xf32>, %arg1: tensor<10xf32>) -> tensor<10xf32> {
        %0 = stablehlo.add %arg0, %arg1 : tensor<10xf32>
        %1 = stablehlo.add %arg0, %arg1 : tensor<10xf32>
        return %0 : tensor<10xf32>
      }
    })mlir";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        return
      }
      // Make sure func1 and func2 use the original resource variable and not the result of @broken_func.
      // CHECK: func.func private @non_tpu
      // CHECK: {{.*%0 = \"tf.StatefulPartitionedCall\"\(%arg0\).*f = @broken_func.*}}
      // CHECK: {{.*StatefulPartitionedCall\"\(%arg0\).*f = @func1.*}}
      // CHECK: {{.*StatefulPartitionedCall\"\(%arg0\).*f = @func2.*}}
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  9. src/net/http/main_test.go

    	for _, g := range strings.Split(string(buf), "\n\n") {
    		_, stack, _ := strings.Cut(g, "\n")
    		stack = strings.TrimSpace(stack)
    		if stack == "" ||
    			strings.Contains(stack, "testing.(*M).before.func1") ||
    			strings.Contains(stack, "os/signal.signal_recv") ||
    			strings.Contains(stack, "created by net.startServer") ||
    			strings.Contains(stack, "created by testing.RunTests") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations-stress.test

    String id=123
    	data="fmt.Sprintf"
    String id=124
    	data="main.do.func1.1"
    String id=125
    	data="runtime/trace.Start"
    String id=126
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=127
    	data="main.do.func1"
    String id=128
    	data="runtime/trace.WithRegion"
    String id=129
    	data="main.do.func1.1.1"
    String id=130
    	data="time.Sleep"
    String id=131
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top