Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for fadds (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FNEGS  (FNMULS x y)) => (FMULS  x y)
    (FNEGD  (FNMULD x y)) => (FMULD  x y)
    (FNMULS (FNEGS  x) y) => (FMULS  x y)
    (FNMULD (FNEGD  x) y) => (FMULD  x y)
    
    (FADDS a (FMULS  x y)) && a.Block.Func.useFMA(v) => (FMADDS  a x y)
    (FADDD a (FMULD  x y)) && a.Block.Func.useFMA(v) => (FMADDD  a x y)
    (FSUBS a (FMULS  x y)) && a.Block.Func.useFMA(v) => (FMSUBS  a x y)
    (FSUBD a (FMULD  x y)) && a.Block.Func.useFMA(v) => (FMSUBD  a x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// FADD <Sd>, <Sn>, <Sm>
    	{0xffe0fc00, 0x1e202800, FADD, instArgs{arg_Sd, arg_Sn, arg_Sm}, nil},
    	// FADD <Dd>, <Dn>, <Dm>
    	{0xffe0fc00, 0x1e602800, FADD, instArgs{arg_Dd, arg_Dn, arg_Dm}, nil},
    	// FADD <Vd>.<t>, <Vn>.<t>, <Vm>.<t>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueRISCV64_OpRISCV64FADDS(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDS a (FMULS x y))
    	// cond: a.Block.Func.useFMA(v)
    	// result: (FMADDS x y a)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			a := v_0
    			if v_1.Op != OpRISCV64FMULS {
    				continue
    			}
    			y := v_1.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      limitations under the License.
    -->
    <div>
    	<h2>REST</h2>
    	<p>
    		Inside the application project there is a application.rest package
    		containing the
    		<code>LibertyRestEndpoint</code>
    		class. This adds a REST endpoint which you can access at <a
    			href="rest">/rest</a>
    	<p>
    		Inside the wlpcfg project there is the
    		<code>it.rest.LibertyRestEndpointTest</code>
    		that will test the REST endpoint to ensure it is working.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"FADDP (scalar)","Bits":"0|1|1|1|1|1|1|0|0|sz|1|1|0|0|0|0|1|1|0|1|1|0|Rn:5|Rd:5","Arch":"Single-precision and double-precision variant","Syntax":"FADDP <V><d>, <Vn>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

        - name
        - other
      name: type2
      other: bar
    `),
    			Result: []byte(`
    retainKeysMap:
      name: type2
      other: bar
    `),
    		},
    	},
    	{
    		Description: "retainKeys map adds a field",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    retainKeysMap:
      name: foo
    `),
    			Current: []byte(`
    retainKeysMap:
      name: foo
    `),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	{ASDIV, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{ASDIV, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    
    	{AFADDS, C_FREG, C_NONE, C_NONE, C_FREG, C_NONE, 54, 4, 0, 0, 0},
    	{AFADDS, C_FREG, C_FREG, C_NONE, C_FREG, C_NONE, 54, 4, 0, 0, 0},
    	{AFMSUBD, C_FREG, C_FREG, C_FREG, C_FREG, C_NONE, 15, 4, 0, 0, 0},
    	{AFCMPS, C_FREG, C_FREG, C_NONE, C_NONE, C_NONE, 56, 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)
  8. src/cmd/go/alldocs.go

    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    // don't provide any relevant packages. It also adds any missing entries
    // to go.sum and removes any unnecessary ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status PrepareConvert(const Graph& graph,
                            std::unique_ptr<GraphDef> graph_def = nullptr);
    
      // Converts the prepared graph to a Function and adds it to the module. A set
      // of nodes from the graph are given to converted to the arguments and returns
      // of the function.
      Status Convert(llvm::StringRef func_name, mlir::FunctionType func_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            succeeds("resolve")
    
            then:
            outputContains("files: [b.jar]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary; exception chain is different when transform input cannot be resolved")
        def "user gets a reasonable error message when a transform input cannot be downloaded and proceeds with other inputs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top