Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for as_str (0.13 sec)

  1. src/cmd/internal/obj/s390x/a.out.go

    	AVGFMB
    	AVGFMH
    	AVGFMF
    	AVGFMG
    	AVGFMA
    	AVGFMAB
    	AVGFMAH
    	AVGFMAF
    	AVGFMAG
    	AVGEF
    	AVGEG
    	AVGBM
    	AVZERO
    	AVONE
    	AVGM
    	AVGMB
    	AVGMH
    	AVGMF
    	AVGMG
    	AVISTR
    	AVISTRB
    	AVISTRH
    	AVISTRF
    	AVISTRBS
    	AVISTRHS
    	AVISTRFS
    	AVL
    	AVLR
    	AVLREP
    	AVLREPB
    	AVLREPH
    	AVLREPF
    	AVLREPG
    	AVLC
    	AVLCB
    	AVLCH
    	AVLCF
    	AVLCG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

              return absl::OkStatus();
            });
    
        // Register the corresponding fake op kernel.
        const char* node_name = opdef.name().c_str();
        const char* op_name = opdef.name().c_str();
        const char* device_name = "CPU";
        static auto fake_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        };
    
        TF_KernelBuilder* builder =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

        if (!tsl::io::GetTestUndeclaredOutputsDir(&test_dir_)) {
          test_dir_ = tsl::testing::TmpDir();
        }
      }
    
      void SetUp() override {
        tsl::setenv("TF_QUANT_MLIR_DUMP_PREFIX", test_dir_.c_str(), 1);
    
        mlir::DialectRegistry dialects;
        dialects.insert<mlir::BuiltinDialect, mlir::func::FuncDialect,
                        mlir::stablehlo::StablehloDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. operator/pkg/name/name.go

    	PDBStr                            = "PodDisruptionBudget"
    	ReplicaSetStr                     = "ReplicaSet"
    	RoleStr                           = "Role"
    	RoleBindingStr                    = "RoleBinding"
    	SAStr                             = "ServiceAccount"
    	ServiceStr                        = "Service"
    	SecretStr                         = "Secret"
    	StatefulSetStr                    = "StatefulSet"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        node_name = std::string(attr.getValue());
      }
      absl::StatusOr<std::unique_ptr<tensorflow::NodeDef>> node_def =
          tensorflow::ConvertTFDialectOpToNodeDef(
              inst, node_name.c_str(), /*ignore_unregistered_attrs=*/true);
      RETURN_FAILURE_IF_ERROR(node_def.status());
    
      const FallbackState& fallback_state = GetDefaultFallbackState();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build.go

    		// #cgo (nocallback|noescape) <function name>
    		if fields := strings.Fields(line); len(fields) == 3 && (fields[1] == "nocallback" || fields[1] == "noescape") {
    			continue
    		}
    
    		// Split at colon.
    		line, argstr, ok := strings.Cut(strings.TrimSpace(line[4:]), ":")
    		if !ok {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		// Parse GOOS/GOARCH stuff.
    		f := strings.Fields(line)
    		if len(f) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_unified_experimental.cc

      const char* comma = "";
      for (const string& factory : factories_sorted) {
        msg += comma + factory;
        comma = ", ";
      }
      msg += ")";
    
      return errors::InvalidArgument(msg.c_str());
    }
    
    static TracingContext* CreateTracingExecutionContext(const char* fn_name,
                                                         TF_Status* s) {
      if (default_factory) {
        return default_factory(fn_name, s);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api.cc

        TF_Status status;
        handle->Ref();
        TFE_TensorHandle* result_handle = device_.copy_tensor_from_device(
            context_, tensorflow::wrap(handle), target_device_name.c_str(), &status,
            info_);
        handle->Unref();
        if (!status.status.ok()) return status.status;
        *result = tensorflow::unwrap(result_handle);
        (*result)->Ref();
        TFE_DeleteTensorHandle(result_handle);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. tensorflow/c/eager/gradients.cc

      if (isa<tracing::TracingOperation>(op.get())) {
        TF_RETURN_IF_ERROR(dyn_cast<tracing::TracingOperation>(op.get())->SetOpName(
            absl::StrCat("ZerosLike", ToId(t)).c_str()));
      }
      TF_RETURN_IF_ERROR(op->AddInput(t));
      int num_outputs = 1;
      std::vector<AbstractTensorHandle*> outputs(num_outputs);
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. tensorflow/c/c_test_util.cc

                        TF_Operation** op, const string& op_device, bool check) {
      TF_OperationDescription* desc = TF_NewOperation(graph, op_name, name);
      if (!op_device.empty()) {
        TF_SetDevice(desc, op_device.c_str());
      }
      TF_AddInput(desc, {l, 0});
      TF_AddInput(desc, {r, 0});
      *op = TF_FinishOperation(desc, s);
      if (check) {
        ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
        ASSERT_NE(*op, nullptr);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top