Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for segs (0.38 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          input_tensor_name = signature_def.inputs['input_vocabs'].name
          input_tensor = sess.graph.get_tensor_by_name(input_tensor_name)
    
          lookup_tensor_name = signature_def.outputs['lookup'].name
          lookup_tensor = sess.graph.get_tensor_by_name(lookup_tensor_name)
    
          lookup_val = sess.run(
              lookup_tensor,
              feed_dict={
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    						offset := add(v.ptr, st.offset, "precomputed value offset")
    						intFromReg(regs, st.ireg, st.size, offset)
    					case abiStepPointer:
    						s := add(v.ptr, st.offset, "precomputed value offset")
    						*((*unsafe.Pointer)(s)) = regs.Ptrs[st.ireg]
    					case abiStepFloatReg:
    						offset := add(v.ptr, st.offset, "precomputed value offset")
    						floatFromReg(regs, st.freg, st.size, offset)
    					case abiStepStack:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	duration, err := time.ParseDuration(durationStr)
    	if err != nil {
    		duration = globalNetPerfMinDuration
    	}
    
    	if duration < globalNetPerfMinDuration {
    		// We need sample size of minimum 10 secs.
    		duration = globalNetPerfMinDuration
    	}
    
    	duration = duration.Round(time.Second)
    
    	results, err := globalSiteReplicationSys.Netperf(ctx, duration)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // writes are done to w.
    // The error message should be plain text.
    //
    // Error deletes the Content-Length and Content-Encoding headers,
    // sets Content-Type to “text/plain; charset=utf-8”,
    // and sets X-Content-Type-Options to “nosniff”.
    // This configures the header properly for the error message,
    // in case the caller had set it up expecting a successful output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// On FreeBSD 11, when we pass -g to clang 3.8 it
    	// invokes its internal assembler with -dwarf-version=2.
    	// When it sees .section .note.GNU-stack, it warns
    	// "DWARF2 only supports one section per compilation unit".
    	// This warning makes no sense, since the section is empty,
    	// but it confuses people.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

        @Override
        public boolean equals(@CheckForNull Object object) {
          return Sets.equalsImpl(this, object);
        }
    
        @Override
        public int hashCode() {
          return Sets.hashCodeImpl(this);
        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

        @Override
        public boolean equals(@CheckForNull Object object) {
          return Sets.equalsImpl(this, object);
        }
    
        @Override
        public int hashCode() {
          return Sets.hashCodeImpl(this);
        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// Number of goroutine ids to grab from sched.goidgen to local per-P cache at once.
    	// 16 seems to provide enough amortization, but other than that it's mostly arbitrary number.
    	_GoidCacheBatch = 16
    )
    
    // cpuinit sets up CPU feature flags and calls internal/cpu.Initialize. env should be the complete
    // value of the GODEBUG environment variable.
    func cpuinit(env string) {
    	switch GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top