Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MVN (0.04 sec)

  1. 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)
  2. 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