Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for vminfp (0.17 sec)

  1. src/cmd/vendor/golang.org/x/term/term_unix.go

    	termios.Oflag &^= unix.OPOST
    	termios.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
    	termios.Cflag &^= unix.CSIZE | unix.PARENB
    	termios.Cflag |= unix.CS8
    	termios.Cc[unix.VMIN] = 1
    	termios.Cc[unix.VTIME] = 0
    	if err := unix.IoctlSetTermios(fd, ioctlWriteTermios, termios); err != nil {
    		return nil, err
    	}
    
    	return &oldState, nil
    }
    
    func getState(fd int) (*State, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      TFE_TensorHandle* axis = TestAxisTensorHandle(ctx);
      TFE_Op* minOp = MinOp(ctx, input, axis);
      TFE_TensorHandle* retvals[1] = {nullptr};
      int num_retvals = 1;
      TFE_Execute(minOp, &retvals[0], &num_retvals, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_DeleteOp(minOp);
      TFE_DeleteTensorHandle(input);
      TFE_DeleteTensorHandle(axis);
      ASSERT_EQ(1, num_retvals);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

        auto operand_type = mlir::cast<ShapedType>(operand.getType());
        if (operand_type.getElementType().isInteger(1)) {
          // TF does not support min or max on boolean (int1) arguments.
          // Use AnyOp for MaxOp and AllOp for MinOp.
          auto tf_reduce_op = rewriter.create<BooleanReduce>(
              reduce_op.getLoc(), reduce_op->getResult(0).getType(), operand,
              reduction_indices,
              /*keep_dim=*/rewriter.getBoolAttr(false));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_test_util.h

    // Return a 1-D INT32 tensor containing a single value 1.
    TFE_TensorHandle* TestAxisTensorHandle(TFE_Context* ctx);
    
    // Return an op taking minimum of `input` long `axis` dimension.
    TFE_Op* MinOp(TFE_Context* ctx, TFE_TensorHandle* input,
                  TFE_TensorHandle* axis);
    
    // If there is a device of type `device_type`, returns true
    // and sets 'device_name' accordingly.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	//TODO VFMINNMP V16.D2, F12                // 0ccaf07e
    	//TODO VFMINNMP V10.S4, V25.S4, V27.S4     // 3bc7aa6e
    	//TODO VFMINNMV V8.S4, F3                  // 03c9b06e
    	//TODO VFMINP V10.S2, F20                  // 54f9b07e
    	//TODO VFMINP V1.D2, V10.D2, V3.D2         // 43f5e16e
    	//TODO VFMINV V11.S4, F9                   // 69f9b06e
    	//TODO VFMLA V6.S[0], F2, F14              // 4e10865f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

      } else if (merge_op == "Mul") {
        BuildReduceBody<MulOp>(element_type, &all_reduce.getComputation(),
                               &builder);
      } else if (merge_op == "Min") {
        BuildReduceBody<MinOp>(element_type, &all_reduce.getComputation(),
                               &builder);
      } else if (merge_op == "Max") {
        BuildReduceBody<MaxOp>(element_type, &all_reduce.getComputation(),
                               &builder);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_amd64.go

    	Pad_cgo_0 [3]byte
    	Ispeed    uint32
    	Ospeed    uint32
    }
    
    const (
    	VINTR    = 0x0
    	VQUIT    = 0x1
    	VERASE   = 0x2
    	VKILL    = 0x3
    	VEOF     = 0x4
    	VTIME    = 0x5
    	VMIN     = 0x6
    	VSWTC    = 0x7
    	VSTART   = 0x8
    	VSTOP    = 0x9
    	VSUSP    = 0xa
    	VEOL     = 0xb
    	VREPRINT = 0xc
    	VDISCARD = 0xd
    	VWERASE  = 0xe
    	VLNEXT   = 0xf
    	VEOL2    = 0x10
    	IGNBRK   = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_386.go

    	Pad_cgo_0 [3]byte
    	Ispeed    uint32
    	Ospeed    uint32
    }
    
    const (
    	VINTR    = 0x0
    	VQUIT    = 0x1
    	VERASE   = 0x2
    	VKILL    = 0x3
    	VEOF     = 0x4
    	VTIME    = 0x5
    	VMIN     = 0x6
    	VSWTC    = 0x7
    	VSTART   = 0x8
    	VSTOP    = 0x9
    	VSUSP    = 0xa
    	VEOL     = 0xb
    	VREPRINT = 0xc
    	VDISCARD = 0xd
    	VWERASE  = 0xe
    	VLNEXT   = 0xf
    	VEOL2    = 0x10
    	IGNBRK   = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

        TypeID::get<TF::MaxOp>(),
        TypeID::get<TF::MaximumOp>(),
        TypeID::get<TF::MaxPoolOp>(),
        TypeID::get<TF::MaxPool3DOp>(),
        TypeID::get<TF::MeanOp>(),
        TypeID::get<TF::MinOp>(),
        TypeID::get<TF::MinimumOp>(),
        TypeID::get<TF::MulNoNanOp>(),
        TypeID::get<TF::OneHotOp>(),
        TypeID::get<TF::OnesLikeOp>(),
        TypeID::get<TF::PackOp>(),
        TypeID::get<TF::PadV2Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_test_util.cc

      TFE_TensorHandle* th = TFE_NewTensorHandleFromTensor(ctx, t, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteTensor(t);
      TF_DeleteStatus(status);
      return th;
    }
    
    TFE_Op* MinOp(TFE_Context* ctx, TFE_TensorHandle* input,
                  TFE_TensorHandle* axis) {
      TF_Status* status = TF_NewStatus();
    
      TFE_Op* op = TFE_NewOp(ctx, "Min", status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top