Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 270 for Sizes (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    // expected-error@-1 {{'tf_device.replicate' expects 'n' to be at least 2, got 1}}
      }
      func.return
    }
    
    // -----
    
    // Check that a replicate replicated inputs where operand sizes do not match
    // 'n' is invalid.
    func.func @parser_replicate_operand_count(%arg0: tensor<*xf32>) {
      tf_device.replicate([%arg0, %arg0, %arg0] as %input0: tensor<*xf32>) {n = 2 : i32} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      return builder.create<TF::PadV2Op>(
          loc, input.getType(), input, temp_padding,
          CreateScalarConstValue<int8_t>(builder, loc, input_zp_value));
    }
    
    }  // namespace
    
    // If input spatial sizes are dynamic (unknown) and padding is same, add ops to
    // dynamically calculate padding size and add input_zp value Pad op with the
    // padding.
    // Otherwise, calculates padding with known numbers, and only for non-zero
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    	limbs []uint
    }
    
    // preallocTarget is the size in bits of the numbers used to implement the most
    // common and most performant RSA key size. It's also enough to cover some of
    // the operations of key sizes up to 4096.
    const preallocTarget = 2048
    const preallocLimbs = (preallocTarget + _W - 1) / _W
    
    // NewNat returns a new nat with a size of zero, just like new(Nat), but with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

          if (contentType != null) {
            sink.writeUtf8("Content-Type: ")
              .writeUtf8(contentType.toString())
              .write(CRLF)
          }
    
          // We can't measure the body's size without the sizes of its components.
          val contentLength = body.contentLength()
          if (contentLength == -1L && countBytes) {
            byteCountBuffer!!.clear()
            return -1L
          }
    
          sink.write(CRLF)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/memcombine.go

    	case 84:
    		return b.NewValue1(pos, OpTrunc64to32, types.Types[types.TUINT32], v)
    	case 42:
    		return b.NewValue1(pos, OpTrunc32to16, types.Types[types.TUINT16], v)
    	default:
    		base.Fatalf("bad sizes %d %d\n", from, to)
    		return nil
    	}
    }
    func zeroExtend(b *Block, pos src.XPos, v *Value, from, to int64) *Value {
    	switch from*10 + to {
    	case 24:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/goboringcrypto.h

    // having a full set of BoringCrypto headers), the struct details are not here.
    // Instead, while building the syso, we compile and run a C++ program
    // that checks that the sizes match. The program also checks (during compilation)
    // that all the function prototypes match the BoringCrypto equivalents.
    // The generation of the checking program depends on the declaration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/testing/iotest/reader.go

    		err = fmt.Errorf("Read(%d bytes at offset %d): %v", n, r.off, err)
    	}
    	r.off += n
    	return n, err
    }
    
    // TestReader tests that reading from r returns the expected file content.
    // It does reads of different sizes, until EOF.
    // If r implements [io.ReaderAt] or [io.Seeker], TestReader also checks
    // that those operations behave as they should.
    //
    // If TestReader finds any misbehaviors, it returns an error reporting them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

          return false;
        }
        val2_result *= val2_shape.getDimSize(idx);
      }
    
      return val1_result == val2_result;
    }
    
    // Checks if a shape has dim sizes of all ones except the right most dim.
    bool ReshapableTo1DTensor(ShapedType rhs_shape) {
      for (auto rank = 0; rank < rhs_shape.getRank() - 1; rank++) {
        if (rhs_shape.getDimSize(rank) != 1) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. internal/event/target/mysql.go

    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	mysqlTableExists = `SELECT 1 FROM %s;`
    	// Some MySQL has a 3072 byte limit on key sizes.
    	mysqlCreateNamespaceTable = `CREATE TABLE %s (
                 key_name VARCHAR(3072) NOT NULL,
                 key_hash CHAR(64) GENERATED ALWAYS AS (SHA2(key_name, 256)) STORED NOT NULL PRIMARY KEY,
                 value JSON)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

    }
    
    // Restores the collapsed dimensions to the `tensor_type`. `collapsed_dims`
    // designate the dimension indices that were collapsed to produce `tensor_type`.
    // The restored dimensions' sizes are 1, according to the semantics of
    // `XlaGatherOp (https://www.tensorflow.org/xla/operation_semantics#gather). The
    // resulting type's shape has `tensor_type.size() + collapsed_dims.size()`
    // dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top