Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for d_val (0.04 sec)

  1. src/runtime/defs_linux_amd64.go

    const (
    	_O_RDONLY   = 0x0
    	_O_WRONLY   = 0x1
    	_O_CREAT    = 0x40
    	_O_TRUNC    = 0x200
    	_O_NONBLOCK = 0x800
    	_O_CLOEXEC  = 0x80000
    )
    
    type usigset struct {
    	__val [16]uint64
    }
    
    type fpxreg struct {
    	significand [4]uint16
    	exponent    uint16
    	padding     [3]uint16
    }
    
    type xmmreg struct {
    	element [4]uint32
    }
    
    type fpstate struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/list6.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package x86
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    var Register = []string{
    	"AL", // [D_AL]
    	"CL",
    	"DL",
    	"BL",
    	"SPB",
    	"BPB",
    	"SIB",
    	"DIB",
    	"R8B",
    	"R9B",
    	"R10B",
    	"R11B",
    	"R12B",
    	"R13B",
    	"R14B",
    	"R15B",
    	"AX", // [D_AX]
    	"CX",
    	"DX",
    	"BX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              use_variable: If True, creates a variable for weight.
            """
            super(GatherModel, self).__init__()
            w_val = np.random.randn(128, 32).astype('f4')
            if use_variable:
              self.w = variables.Variable(w_val)
            else:
              self.w = w_val
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        // number without knowing this, so we need to manually dispatch to each
        // possible member of TensorProto, depening on its dtype.
    #define MATCH(DTYPE, FIELD) \
      case DTYPE:               \
        return tensor.FIELD##_val().size()
    
      switch (tensor.dtype()) {
        MATCH(DT_FLOAT, float);
        MATCH(DT_DOUBLE, double);
        MATCH(DT_INT8, int);
        MATCH(DT_UINT8, int);
        MATCH(DT_INT16, int);
        MATCH(DT_UINT16, int);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      if (shape_x.size() == shape_y.size()) {
        llvm::SmallVector<int64_t, 4> out_shape(shape_x.size());
        for (int i = 0; i < shape_x.size(); i++) {
          auto x_val = shape_x[i];
          auto y_val = shape_y[i];
          out_shape[i] = std::max(x_val, y_val);
        }
        return tensorflow::GetTypeFromTFTensorShape(out_shape, element_type);
      }
    
      auto shape_large = shape_x.size() > shape_y.size() ? shape_x : shape_y;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top