Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 278 for Size (0.08 sec)

  1. src/cmd/link/internal/loader/loader.go

    			// (although the size is different).
    			// Also, for short symbols, the content hash is the identity function of
    			// the 8 bytes, and trailing zeros doesn't change the hash value, e.g.
    			// hash("A") == hash("A\0\0\0").
    			// So when two symbols have the same hash, we need to use the one with
    			// larger size.
    			if siz > s.size {
    				// New symbol has larger size, use the new one. Rewrite the index mapping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

                    const std::vector<Output>& grad_inputs,
                    std::vector<Output>* grad_outputs) {
      // The Mean gradient is just like the Sum gradient, except that
      // all gradients are also divided by the size of reduced groups.
      auto sum_grad = SumGradHelper(scope, op, grad_inputs);
    
      // The product of all entries in a tensor's shape is the total
      // number of entries in the tensor. This step calculates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    	// lay out the code, emitting code and data relocations.
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [5]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    is a list of cpu tensors with padded data. `unpadded_sizes` is a list of shape
    tensors which describes unpadded size of each dimension for each cpu tensor. 
    The size of the `unpadded_sizes` should be the same as `tensors`. They are both
    on host. `tpu_tensors` are list of tpu device tensors without the padded data.
    `tpu_tensors` also has the same size of the `tensors` and the shapes of 
    `tpu_tensors` are determined by the `unpadded_sizes`.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            split(getQueryAdditionalResponseFields(), ",")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).forEach(list::add));
            return list.toArray(new String[list.size()]);
        }
    
        String getQueryAdditionalScrollResponseFields();
    
        default String[] getQueryAdditionalScrollResponseFields(final String... fields) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      size_t frame_start = 0;
      while (frame_start < topo.size()) {
        // Batching nodes who have the same root frame.
        absl::string_view cur_frame_name;
        TF_RETURN_IF_ERROR(
            GetRootFrame(topo[frame_start], control_flow_info_, &cur_frame_name));
        size_t frame_end = frame_start;
        for (size_t i = frame_start + 1; i < topo.size(); ++i) {
          absl::string_view i_frame_name;
          TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	if res != 0 {
    		return "", fmt.Errorf("PPA1 address not valid")
    	}
    
    	size := *(*uint16)(unsafe.Pointer(ppa1 + nameLenOffset))
    	if size > 128 {
    		return "", fmt.Errorf("Function name seems too long, length=%d\n", size)
    	}
    
    	var name [128]byte
    	funcname := (*[128]byte)(unsafe.Pointer(ppa1 + nameOffset))
    	copy(name[0:size], funcname[0:size])
    
    	runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___E2A_L<<4, // __e2a_l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    	for _, mode := range []string{"Max", "Dynamic"} {
    		for size := 1; size <= 64; size <<= 1 {
    			name := fmt.Sprintf("%sPacket/%dMB", mode, size)
    			b.Run(name, func(b *testing.B) {
    				b.Run("TLSv12", func(b *testing.B) {
    					throughput(b, VersionTLS12, int64(size<<20), mode == "Max")
    				})
    				b.Run("TLSv13", func(b *testing.B) {
    					throughput(b, VersionTLS13, int64(size<<20), mode == "Max")
    				})
    			})
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val typeArguments = constructedTypeRef.coneType.typeArguments
            // In all cases, the size of arguments and parameters is the same,
            // so this check exists just to be sure
            if (typeArguments.size != typeParameters.size) return emptyMap()
    
            return buildMap(typeArguments.size) {
                for ((index, projection) in typeArguments.withIndex()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        }
      }
    
      public void testSize0() {
        Iterator<String> iterator = Iterators.emptyIterator();
        assertEquals(0, Iterators.size(iterator));
      }
    
      public void testSize1() {
        Iterator<Integer> iterator = Collections.singleton(0).iterator();
        assertEquals(1, Iterators.size(iterator));
      }
    
      public void testSize_partiallyConsumed() {
        Iterator<Integer> iterator = asList(1, 2, 3, 4, 5).iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
Back to top