Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for op_names (0.38 sec)

  1. tensorflow/c/c_api_experimental.h

    // needs to be updated with the argument length of the input list.
    // Returns nullptr if there is any problem like op_name is not found, or the
    // argument does not support this attribute type.
    TF_CAPI_EXPORT extern const char* TF_GetNumberAttrForOpListInput(
        const char* op_name, int input_index, TF_Status* status);
    
    // Returns 1 if the op is stateful, 0 otherwise. The return value is undefined
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.cc

    };
    
    TF_KernelBuilder* TF_NewKernelBuilder(
        const char* op_name, const char* device_name,
        void* (*create_func)(TF_OpKernelConstruction*),
        void (*compute_func)(void*, TF_OpKernelContext*),
        void (*delete_func)(void*)) {
      TF_KernelBuilder* result = new TF_KernelBuilder;
      result->cc_builder = new ::tensorflow::KernelDefBuilder(op_name);
      result->cc_builder->Device(device_name);
      result->create_function = create_func;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope.h

      // START_SKIP_DOXYGEN
      class Impl;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
      // END_SKIP_DOXYGEN
    
     private:
      Scope WithOpNameImpl(const string& op_name) const;
    
      friend class InternalScope;
      std::unique_ptr<Impl> impl_;
      explicit Scope(Impl*);
    };
    
    /// A helper struct to hold the scopes that would be used by a function
    /// constructing a composite op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/proxyconfig.go

    				return err
    			}
    			if labelSelector != "" {
    				if podNames, podNamespace, err = getPodNameBySelector(ctx, kubeClient, labelSelector); err != nil {
    					return err
    				}
    			} else {
    				if podNames, podNamespace, err = getPodNames(ctx, args[0], ctx.Namespace()); err != nil {
    					return err
    				}
    			}
    			for _, pod := range podNames {
    				loggerName, err = setupEnvoyLogConfig(kubeClient, "", pod, podNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

        bool ignore_unregistered_attrs) {
      TF_ASSIGN_OR_RETURN(auto node_def, GetOperationNodeDef(inst, name));
      TF_ASSIGN_OR_RETURN(auto op_name,
                          GetTensorFlowOpName(inst->getName().getStringRef()));
      const tensorflow::OpRegistrationData* op_reg_data =
          tensorflow::OpRegistry::Global()->LookUp(op_name.str());
      TF_RETURN_IF_ERROR(GetAttrValuesFromOperation(inst, name, op_reg_data,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns.go

    	var optionMap = make(map[string]string)
    	for _, option := range options {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    	for _, option := range newOption {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    
    	options = []string{}
    	for _, v := range optionMap {
    		options = append(options, v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    			}
    			volumeNames = append(volumeNames, v)
    			podNames = append(podNames, p)
    			nodeNames = append(nodeNames, n)
    		}
    
    		t.Run(fmt.Sprintf("Test %d", test.testID), func(t *testing.T) {
    			if test.expectPass {
    				testConcurrentOperationsPositive(t,
    					volumeNames[0], podNames[0], nodeNames[0],
    					volumeNames[1], podNames[1], nodeNames[1],
    				)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_op_gen_util.cc

      return false;
    }
    
    OpInfo::OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
                   const std::vector<string>& aliases)
        : graph_op_def(graph_op_def), api_def(api_def), aliases(aliases) {
      op_name = SeparateNamespaces(api_def.endpoint(0).name());
      InferOpAttributes(graph_op_def, &inferred_input_attrs);
      has_optional_attrs = HasOptionalAttrs(api_def, inferred_input_attrs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      (llvm::StringRef(select_user_tf_ops))
          .split(user_ops, ',', /*MaxSplit=*/-1,
                 /*KeepEmpty=*/false);
      llvm::for_each(user_ops, [&toco_flags](llvm::StringRef op_name) {
        *(toco_flags.add_select_user_tf_ops()) = op_name.str();
      });
    
      std::string result;
      std::optional<tensorflow::Session *> session = std::nullopt;
      if (bundle) session = bundle->GetSession();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      return TensorHandlePtr(var_value);
    }
    
    void Variable::GeneralAssignment(const char* op_name, TFE_Context* context,
                                     TFE_TensorHandle* value, TF_Status* status) {
      std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> op(
          TFE_NewOp(context, op_name, status), &TFE_DeleteOp);
      if (TF_GetCode(status) != TF_OK) return;
      TFE_OpSetAttrType(op.get(), "dtype", type_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
Back to top