Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IOTA (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Scale the iota and add the offset.
        auto iota = rewriter.create<IotaOp>(op.getLoc(), result_type,
                                            rewriter.getI64IntegerAttr(0));
        auto scaled = rewriter.create<chlo::BroadcastMulOp>(
            op.getLoc(), result_type, iota, step,
            hlo::getBroadcastDimensionsAttr(&rewriter, iota, step));
        rewriter.replaceOpWithNewOp<chlo::BroadcastAddOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	b = 1 &lt;&lt; iota  // b == 2  (iota == 1)
    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 &lt;&lt; iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    	w         = iota * 42  // w == 84    (untyped integer constant)
    )
    
    const x = iota  // x == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[IOTA:.*]] = "mhlo.iota"() <{iota_dimension = 1 : i64}> : () -> tensor<3x5xi32>
      // CHECK: %[[BCAST_ARG0:.+]] = "mhlo.broadcast_in_dim"(%arg0) <{broadcast_dimensions = dense<0> : tensor<1xi64>}> : (tensor<3xi32>) -> tensor<3x5xi32>
      // CHECK: %[[COMPARE:.*]] = mhlo.compare EQ, %[[BCAST_ARG0]], %[[IOTA]], NOTYPE : (tensor<3x5xi32>, tensor<3x5xi32>) -> tensor<3x5xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_3]] : tensor<123xf32>
    // CHECK:         }
    func.func @convert_iota_1d() -> tensor<123xf32> {
      %0 = "mhlo.iota"() <{ iota_dimension = 0 : i64 }> : () -> tensor<123xf32>
      func.return %0 : tensor<123xf32>
    }
    
    // CHECK-LABEL:   func @convert_iota_3d() -> tensor<5x7x9xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	if s.softFloat {
    		if c, ok := s.sfcall(op, arg0, arg1); ok {
    			return c
    		}
    	}
    	return s.newValue2(op, t, arg0, arg1)
    }
    
    type instrumentKind uint8
    
    const (
    	instrumentRead = iota
    	instrumentWrite
    	instrumentMove
    )
    
    func (s *state) instrument(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	s.instrument2(t, addr, nil, kind)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    // https://lists.w3.org/Archives/Public/ietf-http-wg/2016JulSep/0599.html
    //
    // "reserved (remote)" is omitted since the client code does not
    // support server push.
    const (
    	http2stateIdle http2streamState = iota
    	http2stateOpen
    	http2stateHalfClosedLocal
    	http2stateHalfClosedRemote
    	http2stateClosed
    )
    
    var http2stateName = [...]string{
    	http2stateIdle:             "Idle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    package armasm
    
    const (
    	_ Op = iota
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	_
    	ADC_EQ
    	ADC_NE
    	ADC_CS
    	ADC_CC
    	ADC_MI
    	ADC_PL
    	ADC_VS
    	ADC_VC
    	ADC_HI
    	ADC_LS
    	ADC_GE
    	ADC_LT
    	ADC_GT
    	ADC_LE
    	ADC
    	ADC_ZZ
    	ADC_S_EQ
    	ADC_S_NE
    	ADC_S_CS
    	ADC_S_CC
    	ADC_S_MI
    	ADC_S_PL
    	ADC_S_VS
    	ADC_S_VC
    	ADC_S_HI
    	ADC_S_LS
    	ADC_S_GE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*13424*/ uint16(xArgRM64),
    	/*13425*/ uint16(xMatch),
    	/*13426*/ uint16(xSetOp), uint16(PUSH),
    	/*13428*/ uint16(xArgRM64),
    	/*13429*/ uint16(xMatch),
    }
    
    const (
    	_ Op = iota
    
    	AAA
    	AAD
    	AAM
    	AAS
    	ADC
    	ADD
    	ADDPD
    	ADDPS
    	ADDSD
    	ADDSS
    	ADDSUBPD
    	ADDSUBPS
    	AESDEC
    	AESDECLAST
    	AESENC
    	AESENCLAST
    	AESIMC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    // Code generated by ppc64map -fmt=decoder ../pp64.csv DO NOT EDIT.
    
    package ppc64asm
    
    const (
    	_ Op = iota
    	HASHCHK
    	HASHCHKP
    	HASHST
    	HASHSTP
    	BRD
    	BRH
    	BRW
    	CFUGED
    	CNTLZDM
    	CNTTZDM
    	DCFFIXQQ
    	DCTFIXQQ
    	LXVKQ
    	LXVP
    	LXVPX
    	LXVRBX
    	LXVRDX
    	LXVRHX
    	LXVRWX
    	MTVSRBM
    	MTVSRBMI
    	MTVSRDM
    	MTVSRHM
    	MTVSRQM
    	MTVSRWM
    	PADDI
    	PDEPD
    	PEXTD
    	PLBZ
    	PLD
    	PLFD
    	PLFS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top