Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for mpz_mul (0.11 sec)

  1. misc/cgo/gmp/gmp.go

    // Sub sets z = x - y and returns z.
    func (z *Int) Sub(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_sub(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // Mul sets z = x * y and returns z.
    func (z *Int) Mul(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_mul(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // Div sets z = x / y, rounding toward zero, and returns z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

      bias_grad = tf.reshape(updates_grad_reshaped, input_value_shape)
    
      a = math_ops.conj(op.inputs[0])
      b = math_ops.conj(op.inputs[1])
      grad_a = gen_math_ops.mat_mul(grad, b)
      grad_b = gen_math_ops.mat_mul(grad, a, transpose_a=True)
      return [grad_a, grad_b, bias_grad]
    
    
    @Composite(
        'NewMaxPool',
        inputs=['input_: T'],
        attrs=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

      s = s.replace('2D', '2d').replace('3D', '3d')
      snake_case = ''.join(['_' + i.lower() if i.isupper() else i for i in s
                           ]).lstrip('_')
      return snake_case.replace('mat_mul', 'matmul').replace('bias_add', 'bias')
    
    
    def _substitute_impl_function_name_template(module: str) -> str:
      """Generates the op-specific implementation function name."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    	BPF_MEMWORDS                      = 0x10
    	BPF_MINBUFSIZE                    = 0x20
    	BPF_MINOR_VERSION                 = 0x1
    	BPF_MISC                          = 0x7
    	BPF_MSH                           = 0xa0
    	BPF_MUL                           = 0x20
    	BPF_NEG                           = 0x80
    	BPF_OR                            = 0x40
    	BPF_RELEASE                       = 0x30bb6
    	BPF_RET                           = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	BPF_MEMWORDS                  = 0x10
    	BPF_MINBUFSIZE                = 0x20
    	BPF_MINOR_VERSION             = 0x1
    	BPF_MISC                      = 0x7
    	BPF_MSH                       = 0xa0
    	BPF_MUL                       = 0x20
    	BPF_NEG                       = 0x80
    	BPF_OR                        = 0x40
    	BPF_RELEASE                   = 0x30bb6
    	BPF_RET                       = 0x6
    	BPF_RSH                       = 0x70
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_openbsd_ppc64.go

    	BPF_MEMWORDS                      = 0x10
    	BPF_MINBUFSIZE                    = 0x20
    	BPF_MINOR_VERSION                 = 0x1
    	BPF_MISC                          = 0x7
    	BPF_MSH                           = 0xa0
    	BPF_MUL                           = 0x20
    	BPF_NEG                           = 0x80
    	BPF_OR                            = 0x40
    	BPF_RELEASE                       = 0x30bb6
    	BPF_RET                           = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  7. src/syscall/zerrors_openbsd_riscv64.go

    	BPF_MEMWORDS                      = 0x10
    	BPF_MINBUFSIZE                    = 0x20
    	BPF_MINOR_VERSION                 = 0x1
    	BPF_MISC                          = 0x7
    	BPF_MSH                           = 0xa0
    	BPF_MUL                           = 0x20
    	BPF_NEG                           = 0x80
    	BPF_OR                            = 0x40
    	BPF_RELEASE                       = 0x30bb6
    	BPF_RET                           = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_darwin_amd64.go

    	BPF_MEMWORDS                      = 0x10
    	BPF_MINBUFSIZE                    = 0x20
    	BPF_MINOR_VERSION                 = 0x1
    	BPF_MISC                          = 0x7
    	BPF_MSH                           = 0xa0
    	BPF_MUL                           = 0x20
    	BPF_NEG                           = 0x80
    	BPF_OR                            = 0x40
    	BPF_RELEASE                       = 0x30bb6
    	BPF_RET                           = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_386.go

    	BPF_MEM                          = 0x60
    	BPF_MEMWORDS                     = 0x10
    	BPF_MINOR_VERSION                = 0x1
    	BPF_MISC                         = 0x7
    	BPF_MSH                          = 0xa0
    	BPF_MUL                          = 0x20
    	BPF_NEG                          = 0x80
    	BPF_OR                           = 0x40
    	BPF_RET                          = 0x6
    	BPF_RSH                          = 0x70
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_freebsd_arm.go

    	BPF_MEMWORDS                      = 0x10
    	BPF_MINBUFSIZE                    = 0x20
    	BPF_MINOR_VERSION                 = 0x1
    	BPF_MISC                          = 0x7
    	BPF_MSH                           = 0xa0
    	BPF_MUL                           = 0x20
    	BPF_NEG                           = 0x80
    	BPF_OR                            = 0x40
    	BPF_RELEASE                       = 0x30bb6
    	BPF_RET                           = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
Back to top