Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for MVN (0.08 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.1.0+</version>
              <description>
                Indicates that this project is the root project, located in the upper directory of the source tree.
                This is the directory which may contain the .mvn directory.
    
                @since Maven 4.0.0
              </description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	}
    	// match: (CSEL [cc] x (MVN a) flag)
    	// result: (CSINV [cc] x a flag)
    	for {
    		cc := auxIntToOp(v.AuxInt)
    		x := v_0
    		if v_1.Op != OpARM64MVN {
    			break
    		}
    		a := v_1.Args[0]
    		flag := v_2
    		v.reset(OpARM64CSINV)
    		v.AuxInt = opToAuxInt(cc)
    		v.AddArg3(x, a, flag)
    		return true
    	}
    	// match: (CSEL [cc] (MVN a) x flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVH, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 45, 4, 0, 0, 0}, /* also MOVHU */
    	{AMOVW, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 45, 4, 0, 0, 0}, /* also MOVWU */
    	/* TODO: MVN C_SHIFT */
    
    	/* MOVs that become MOVK/MOVN/MOVZ/ADD/SUB/OR */
    	{AMOVW, C_MBCON, C_NONE, C_NONE, C_ZREG, C_NONE, 32, 4, 0, 0, 0},
    	{AMOVD, C_MBCON, C_NONE, C_NONE, C_ZREG, C_NONE, 32, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    				{0, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    			},
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "MVN",
    		argLen: 1,
    		asm:    arm.AMVN,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    			},
    			outputs: []outputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. RELEASE.md

    *   Moved `bayesflow.special_math` to distributions.
    *   `tf.contrib.tensor_forest.python.tensor_forest.RandomForestDeviceAssigner`
        removed.
    *   Changed some MVN classes and parameters:
        *   `tf.contrib.distributions.MultivariateNormalFull` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`.
        *   `tf.contrib.distributions.MultivariateNormalCholesky` replaced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top