Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for div1 (0.24 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // Fusing-LABEL: FusingdivRelu
    // Fusing:  %[[div:[0-9].*]] = tfl.div %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // Fusing:  %[[div1:[0-9].*]] = tfl.div %arg0, %[[div]] {fused_activation_function = "RELU"} : tensor<1xf32>
    // Fusing:  %[[relu:[0-9].*]] = "tfl.relu"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
    // Fusing:  %[[div2:[0-9].*]] = tfl.div %[[relu]], %[[div1]] {fused_activation_function = "RELU6"} : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DCBT:           "dcbt",
    	DCBTST:         "dcbtst",
    	DIVD:           "divd",
    	DIVDCC:         "divd.",
    	DIVDO:          "divdo",
    	DIVDOCC:        "divdo.",
    	DIVDU:          "divdu",
    	DIVDUCC:        "divdu.",
    	DIVDUO:         "divduo",
    	DIVDUOCC:       "divduo.",
    	DIVW:           "divw",
    	DIVWCC:         "divw.",
    	DIVWO:          "divwo",
    	DIVWOCC:        "divwo.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 [false] x y)
    	// result: (DIVW (SignExt16to32 x) (SignExt16to32 y))
    	for {
    		if auxIntToBool(v.AuxInt) != false {
    			break
    		}
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64DIVW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_0 := v.Args[0]
    	// match: (Div64 x y)
    	// result: (DIVD x y)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpS390XDIVD)
    		v.AddArg2(x, y)
    		return true
    	}
    }
    func rewriteValueS390X_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (DIVW (MOVBreg x) (MOVBreg y))
    	for {
    		x := v_0
    		y := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 x y)
    	// result: (Div32 (SignExt16to32 x) (SignExt16to32 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpDiv32)
    		v0 := b.NewValue0(v.Pos, OpSignExt16to32, typ.Int32)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite386.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValue386_OpDiv8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div8 x y)
    	// result: (DIVW (SignExt8to16 x) (SignExt8to16 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(Op386DIVW)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to16, typ.Int16)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top