Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for stdx (0.06 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    		return OPVCC(31, 726, 0, 1) /* sthcx. */
    	case ASTWCCC:
    		return OPVCC(31, 150, 0, 1) /* stwcx. */
    	case ASTDCCC:
    		return OPVCC(31, 214, 0, 1) /* stwdx. */
    	case AMOVD:
    		return OPVCC(31, 149, 0, 0) /* stdx */
    	case AMOVDU:
    		return OPVCC(31, 181, 0, 0) /* stdux */
    
    	/* Vector (VMX/Altivec) instructions */
    	case ASTVEBX:
    		return OPVCC(31, 135, 0, 0) /* stvebx - v2.03 */
    	case ASTVEHX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        // Input tensors
        const std::vector<std::pair<string, Tensor>>& input_pairs,
        // Output tensors
        const std::vector<string>& output_tensor_names, TF_Tensor** c_outputs,
        // Target nodes
        const std::vector<string>& target_oper_names, TF_Buffer* run_metadata,
        TF_Status* status) {
      const int noutputs = output_tensor_names.size();
      std::vector<Tensor> outputs(noutputs);
      Status result;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        return std::optional<std::string>("");
      return std::nullopt;
    }
    
    std::optional<std::string> CollectiveAllToAllV2Op::GetResourceInstanceStr() {
      if (!getIsStateless() && getNorderingToken() == 0)
        return std::optional<std::string>("");
      return std::nullopt;
    }
    
    std::optional<std::string> CollectiveGatherV2Op::GetResourceInstanceStr() {
      if (!getIsStateless() && getNorderingToken() == 0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      for (auto it : llvm::zip(op.getResults(), then_results, else_results)) {
        // If then and else types do not match, skip refinement for that result.
        if (std::get<1>(it) != std::get<2>(it)) continue;
        changed = RefineResultType(op, std::get<0>(it), std::get<1>(it)) || changed;
      }
      return changed;
    }
    
    bool ShapeInference::InferShapeForIfRegion(IfRegionOp op) {
      bool changed = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "version": "2.3.0",
          "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
          "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
          "dev": true
        },
        "node_modules/spdx-expression-parse": {
          "version": "3.0.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // by the argument generators.
    //
    template <typename T1, typename T2>
    class CartesianProductGenerator2
        : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
     public:
      typedef ::std::tr1::tuple<T1, T2> ParamType;
    
      CartesianProductGenerator2(const ParamGenerator<T1>& g1,
          const ParamGenerator<T2>& g2)
          : g1_(g1), g2_(g2) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  7. fastapi/applications.py

                    * `name`: (`str`) **REQUIRED** (if a `license_info` is set). The
                        license name used for the API.
                    * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression
                        for the API. The `identifier` field is mutually exclusive of the `url`
                        field. Available since OpenAPI 3.1.0, FastAPI 0.99.0.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	//
    	// Note that this flag change applies even when running vet as
    	// a dependency of vetting a package outside std.
    	// (Otherwise we'd have to introduce a whole separate
    	// space of "vet fmt as a dependency of a std top-level vet"
    	// versus "vet fmt as a dependency of a non-std top-level vet".)
    	// This is OK as long as the packages that are farther down the
    	// dependency tree turn on *more* analysis, as here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		if p.Module.Path == "bootstrap" && cfg.GOROOT == os.Getenv("GOROOT_BOOTSTRAP") {
    			// During bootstrapping, the bootstrap toolchain is built in module
    			// "bootstrap" (instead of "std"), with GOROOT set to GOROOT_BOOTSTRAP
    			// (so the bootstrap toolchain packages don't even appear to be in GOROOT).
    			goto omitVCS
    		}
    		repoDir, vcsCmd, err = vcs.FromDir(base.Cwd(), "", allowNesting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. go.sum

    github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
    github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
    github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
    github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
    github.com/go-logr/zapr v0.1.0/go.mod h1:tabnROwaDl0UNxkVeFRbY8bwB37GwRv0P8lg6aAiEnk=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top