Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 306 for pb (0.03 sec)

  1. src/internal/profile/profile.go

    // total samples collected.
    func (p *Profile) Merge(pb *Profile, r float64) error {
    	if err := p.Compatible(pb); err != nil {
    		return err
    	}
    
    	pb = pb.Copy()
    
    	// Keep the largest of the two periods.
    	if pb.Period > p.Period {
    		p.Period = pb.Period
    	}
    
    	p.DurationNanos += pb.DurationNanos
    
    	p.Mapping = append(p.Mapping, pb.Mapping...)
    	for i, m := range p.Mapping {
    		m.ID = uint64(i + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

    }
    
    TEST(CreateExportedModelTest, CreateExportedModelWithAddedAssetFileDefs) {
      AssetFileDef asset1;
      ASSERT_TRUE(
          TextFormat::ParseFromString(R"pb(filename: "fname1")pb", &asset1));
    
      AssetFileDef asset2;
      ASSERT_TRUE(
          TextFormat::ParseFromString(R"pb(filename: "fname2")pb", &asset2));
    
      const ExportedModel exported_model = CreateExportedModelFromGraphDef(
          GraphDef(), /*init_node_name=*/"", /*checkpoint_dir=*/"",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/runtime/pinner_test.go

    }
    
    func BenchmarkPinnerPinUnpinParallel(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		p := new(obj)
    		for pb.Next() {
    			var pinner runtime.Pinner
    			pinner.Pin(p)
    			pinner.Unpin()
    		}
    	})
    }
    
    func BenchmarkPinnerPinUnpinParallelTiny(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		p := new(bool)
    		for pb.Next() {
    			var pinner runtime.Pinner
    			pinner.Pin(p)
    			pinner.Unpin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

    // WholeModel-DAG: "tf.DumpTensor"(%[[matmul0_q]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "composite_dot_general_with_bias_and_relu6_dynamic_fn_2", log_dir_path = "/tmp/dumps/composite_dot_general_with_bias_and_relu6_dynamic_fn_2", node_name = "_empty_node"}> : (tensor<?x2xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/runtime/chan_test.go

    	myc := make(chan int)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			select {
    			case <-myc:
    			default:
    			}
    		}
    	})
    }
    
    func BenchmarkSelectUncontended(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		myc1 := make(chan int, 1)
    		myc2 := make(chan int, 1)
    		myc1 <- 0
    		for pb.Next() {
    			select {
    			case <-myc1:
    				myc2 <- 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. internal/grid/benchmark_test.go

    				b.ResetTimer()
    				t := time.Now()
    				var ops int64
    				var lat int64
    				b.SetParallelism(par)
    				b.RunParallel(func(pb *testing.PB) {
    					rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    					n := 0
    					var latency int64
    					managers := grid.Managers
    					hosts := grid.Hosts
    					for pb.Next() {
    						// Pick a random manager.
    						src, dst := rng.Intn(len(managers)), rng.Intn(len(managers))
    						if src == dst {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	authorizationMeta = "authorization"
    )
    
    type mockCAServer struct {
    	pb.UnimplementedIstioCertificateServiceServer
    	Certs         []string
    	Authenticator *security.FakeAuthenticator
    	Err           error
    }
    
    func (ca *mockCAServer) CreateCertificate(ctx context.Context, in *pb.IstioCertificateRequest) (*pb.IstioCertificateResponse, error) {
    	if ca.Authenticator != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. internal/dsync/dsync_test.go

    		<-c
    	}
    }
    
    func BenchmarkMutexUncontended(b *testing.B) {
    	b.ResetTimer()
    	b.ReportAllocs()
    
    	type PaddedMutex struct {
    		*DRWMutex
    	}
    	b.RunParallel(func(pb *testing.PB) {
    		mu := PaddedMutex{NewDRWMutex(ds, "")}
    		for pb.Next() {
    			mu.Lock(id, source)
    			mu.Unlock(context.Background())
    		}
    	})
    }
    
    func benchmarkMutex(b *testing.B, slack, work bool) {
    	b.ResetTimer()
    	b.ReportAllocs()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. src/testing/benchmark.go

    }
    
    // Next reports whether there are more iterations to execute.
    func (pb *PB) Next() bool {
    	if pb.cache == 0 {
    		n := pb.globalN.Add(pb.grain)
    		if n <= pb.bN {
    			pb.cache = pb.grain
    		} else if n < pb.bN+pb.grain {
    			pb.cache = pb.bN + pb.grain - n
    		} else {
    			return false
    		}
    	}
    	pb.cache--
    	return true
    }
    
    // RunParallel runs a benchmark in parallel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/gtl/flatmap.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top