Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for op_names (0.15 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

        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 =
            TF_NewKernelBuilder(op_name, device_name, /*create_func=*/nullptr,
                                fake_compute_func, /*delete_func=*/nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

                                    "The number of composite op expanded.", "name");
    }
    
    void IncreaseOpExpansionExecuteCounterByOne(const std::string& op_name) {
      tf_core_op_expansion_op_counter->GetCell(op_name)->IncrementBy(1);
    }
    
    }  // namespace tensorflow
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    				if !ztunnelPod {
    					return fmt.Errorf("workloads command is only supported by Ztunnel proxies: %v", podName)
    				}
    				podNames = []string{podName}
    				podNamespace = ns
    			} else {
    				var err error
    				podNames, podNamespace, err = ctx.InferPodsFromTypedResource("daemonset/ztunnel", ctx.IstioNamespace())
    				if err != nil {
    					return err
    				}
    			}
    
    			destLoggerLevels := map[string]Level{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/network_test.go

    				return fmt.Errorf("no network system notify")
    			}
    			podNames := sets.New[string]("pod1", "pod2")
    			svcNames := sets.New[string]("svc1")
    			addresses := c.ambientIndex.All()
    			for _, addr := range addresses {
    				wl := addr.GetWorkload()
    				if wl != nil {
    					if !podNames.Contains(wl.Name) {
    						continue
    					}
    					if addr.GetWorkload().Network != network {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

        for (Operation* op : chain_resource_to_ops_map[kUnknownResourceAndDevice]) {
          std::string op_name = op->getName().getStringRef().str();
          if (blocking_ops.insert(op_name).second) {
            LOG(WARNING)
                << "[`tf-executor-convert-control-to-data-outputs` disabled] "
                   "Op type '"
                << op_name
                << "' has unknown side effects and blocks inter iteration "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

        if (visited_nonquantizable_ops_->contains(op)) {
          return false;
        }
    
        if (auto custom_op = llvm::dyn_cast_or_null<CustomOp>(op)) {
          std::string op_name = custom_op.getCustomCode().str();
          auto custom_map_iter = quant_specs_.custom_map.find(op_name);
          if (custom_map_iter != quant_specs_.custom_map.end())
            return isQuantizableIndex(
                operand_index, custom_map_iter->second.quantizable_input_indices);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/fmt.go

    	OUNSAFESTRINGDATA: "unsafe.StringData",
    	OXOR:              "^",
    }
    
    // GoString returns the Go syntax for the Op, or else its name.
    func (o Op) GoString() string {
    	if int(o) < len(OpNames) && OpNames[o] != "" {
    		return OpNames[o]
    	}
    	return o.String()
    }
    
    // Format implements formatting for an Op.
    // The valid formats are:
    //
    //	%v	Go syntax ("+", "<-", "print")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. tensorflow/c/c_test_util.cc

    // If `op_device` is non-empty, set the created op on that device.
    void BinaryOpHelper(const char* op_name, TF_Operation* l, TF_Operation* r,
                        TF_Graph* graph, TF_Status* s, const char* name,
                        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());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    			}
    		}
    	}
    	return "", false, false
    }
    
    // chooseExe finds and returns path to preferred binary. names is a list of
    // names to search on both Linux and OSX. osxNames is a list of names specific
    // to OSX. names always has a higher priority than osxNames. The order of
    // the name within each list decides its priority (e.g. the first name has a
    // higher priority than the second name in the list).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. .github/actions/people/app/main.py

        contributors_results = get_contributors(pr_nodes=pr_nodes)
        authors = {**experts_results.authors, **contributors_results.authors}
        maintainers_logins = {"tiangolo"}
        bot_names = {"codecov", "github-actions", "pre-commit-ci", "dependabot"}
        maintainers = []
        for login in maintainers_logins:
            user = authors[login]
            maintainers.append(
                {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top