Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for table_1 (0.35 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		c.blitrl = q
    	}
    
    	// The line number for constant pool entries doesn't really matter.
    	// We set it to the line number of the preceding instruction so that
    	// there are no deltas to encode in the pc-line tables.
    	for q := c.blitrl; q != nil; q = q.Link {
    		q.Pos = p.Pos
    	}
    
    	c.elitrl.Link = p.Link
    	p.Link = c.blitrl
    
    	c.blitrl = nil /* BUG: should refer back to values until out-of-range */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        rewriter.replaceOp(mul_op, fc.getOutput());
    
        return success();
      }
    };
    
    // Fuse Mul with proceeding Affine ops. This is an C++ implementation of the
    // following table gen implementation, which doesn't derived the result type of
    // the TFL_DequantizeOp.
    // def : Pat<(TFL_MulOp (TFL_Conv2DOp:$conv_output $input,
    //                          (TFL_DequantizeOp (TFL_QuantizeOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Creates a non-initialized hash table.";
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Before using the table you will have to initialize it.  After initialization the
    table will be immutable.
      }];
    
      let arguments = (ins
        I32Attr:$table_id,
        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top