Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for some_name (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        "tf.DumpTensor"(%4) {device = "", enabled = true, file_name = "quantized_tensor_data.pb", func_name = "conv_with_dump", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"} : (tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_test.cc

      // Exercise kernel NodeDef name read
      TF_StringView name_string_view = TF_OpKernelConstruction_GetName(ctx);
      std::string node_name = "SomeNodeName";
      std::string candidate_node_name =
          std::string(name_string_view.data, name_string_view.len);
      EXPECT_EQ(node_name, candidate_node_name);
      return s;
    }
    
    static void MyComputeFunc(void* kernel, TF_OpKernelContext* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          attr_val: Value of the attr_name to check.
          node_name: Name of the node to match. Accepts regex2 format.
    
        Returns:
          True if there exists a node whose name matches `op_name` and 'attr_val' if
          'attr_name' is given.
        """
    
        def match_node_name(name):
          if not node_name:
            return True
          compiled_regex = re.compile(node_name)
          match = re.fullmatch(compiled_regex, name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
      kube::util::wait_for_success "$system_node_wait_time" "$interval_time" "$nodes_stats | grep $node_name"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      bool IsInCompsiteFunction(Operation* op) {
        func::FuncOp parent = op->getParentOfType<func::FuncOp>();
        if (!parent) return false;
    
        StringRef sym_name = parent.getSymName();
        return sym_name.starts_with(kQuantizedFuncPrefix) ||
               sym_name.starts_with(kCompositeFuncPrefix);
      }
    
      ModuleOp module_;
      SymbolTable symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
      }
    
      struct EdgeInfo {
        absl::string_view node_name;
        std::optional<absl::string_view> cluster_name;
    
        absl::string_view GetClusterName() const {
          return cluster_name ? *cluster_name : "[none]";
        }
    
        std::pair<absl::string_view, std::optional<absl::string_view>> AsPair()
            const {
          return {node_name, cluster_name};
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # try creating again just in case.
      New-Item $fluentd_config_dir -ItemType 'directory' -Force | Out-Null
    
      $config = $FLUENTD_CONFIG.replace('NODE_NAME', (hostname))
      $config | Out-File -FilePath $fluentd_config_file -Encoding ASCII
      Log-Output "Wrote fluentd logging config to $fluentd_config_file"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    self-contained.
    For example, this would transform
    
    "tf_saved_model.global_tensor"() { sym_name = "v" ... }
    func @f(%arg0 {tf_saved_model.bound_input = @v}) {
      %1 = "tf.ReadVariableOp"(%arg0)
      ...
    }
    
    to
    
    func @f(%arg0 {tf_saved_model.bound_input = @v}) {
      %0 = "tf.VarHandleOp"(sym_name = "v")
      %1 = "tf.ReadVariableOp"(%0)
      ...
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top