Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for inversion (0.12 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	case 81: // float to fixed and fixed to float moves (no conversion)
    		switch p.As {
    		case ALDGR:
    			zRRE(op_LDGR, uint32(p.To.Reg), uint32(p.From.Reg), asm)
    		case ALGDR:
    			zRRE(op_LGDR, uint32(p.To.Reg), uint32(p.From.Reg), asm)
    		}
    
    	case 82: // fixed to float conversion
    		var opcode uint32
    		switch p.As {
    		default:
    			log.Fatalf("unexpected opcode %v", p.As)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVWstore  [off] {sym} ptr (FMOVSfpgp val) mem) => (FMOVSstore [off] {sym} ptr val mem)
    (FMOVSstore [off] {sym} ptr (FMOVSgpfp val) mem) => (MOVWstore [off] {sym} ptr val mem)
    
    // float <=> int register moves, with no conversion.
    // These come up when compiling math.{Float64bits, Float64frombits, Float32bits, Float32frombits}.
    (MOVDload  [off] {sym} ptr (FMOVDstore [off] {sym} ptr val _)) => (FMOVDfpgp val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                  "type": "string"
                },
                "type": "array"
              },
              "version": {
                "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                  "type": "string"
                },
                "type": "array"
              },
              "version": {
                "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                  "type": "string"
                },
                "type": "array"
              },
              "version": {
                "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                  "type": "string"
                },
                "type": "array"
              },
              "version": {
                "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that when the weight tensor for `stablehlo.dot_general` is coming from
    // `stablehlo.transpose` and its operand is not a `stablehlo.constant`
    // (e.g. argument), the conversion to `tfl.fully_connected` doesn't happen.
    
    // CHECK-LABEL: dot_general_srq_arg_transpose_rhs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      local kubelet_bin="${KUBE_HOME}/bin/kubelet"
      local -r version="$("${kubelet_bin}" --version=true | cut -f2 -d " ")"
      local -r builtin_kubelet="/usr/bin/kubelet"
      if [[ "${TEST_CLUSTER:-}" == "true" ]]; then
        # Determine which binary to use on test clusters. We use the built-in
        # version only if the downloaded version is the same as the built-in
        # version. This allows GCI to run some of the e2e tests to qualify the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    		}
    		if mi.Replace != nil {
    			dm.Replace = debugModFromModinfo(mi.Replace)
    		} else if mi.Version != "" && cfg.BuildMod != "vendor" {
    			dm.Sum = modfetch.Sum(ctx, module.Version{Path: mi.Path, Version: mi.Version})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # or equal to 1 in the quantized domain).
        self.assertAllClose(new_outputs, got_outputs, atol=0.00154)
    
      # Currently, only some specific forms of equantions are supported for
      # batchmatmul conversion.
      @parameterized.parameters(
          testing.parameter_combinations([{
              'equation': ('abc,cd->abd', 'abcd,cde->abe'),
              'shape_unknown': (True, False),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top