Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for op_names (0.24 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          return true;
        }
      }
      return false;
    }
    
    // Returns whether the current op is not supported by the TF Lite runtime.
    static bool IsUnsupportedFlexOp(const std::string& op_name) {
      return op_name == "PartitionedCall" || op_name == "StatefulPartitionedCall";
    }
    
    // Create description of operation that could not be converted.
    static std::string GetOpDescriptionForDebug(Operation* inst) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      auto get_full_op_name = [&](const std::string& op_name) {
        const char* kTfPrefix = "tf.";
        return kTfPrefix + op_name;
      };
    
      std::string op_name = get_full_op_name(node_type_name);
      if (back_edge_node_output_.contains(&node)) {
        op_name = op_name + ".sink";
      }
    
      mlir::OperationState result(GetLocation(node), op_name);
      for (int i = 0; i < node.num_outputs(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const std::unordered_map<string, Node*>& outside_compilation_attr_to_node) {
      std::vector<std::pair<Node*, Node*>>
          lifted_arg_nodes_and_outside_compilation_nodes;
      for (Node* n : function_body.graph->op_nodes()) {
        string oc_cluster;
        if (n->type_string() == "Placeholder" &&
            GetNodeAttr(n->def(), kXlaLiftedArgOutsideCompilationAttrName,
                        &oc_cluster)
                .ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Convolution ouside the while op is quantized.
        self.assertTrue(
            self._contains_op(
                output_graphdef,
                op_name='XlaConvV2',
                attr_name='RhsT',
                attr_val=attr_value_pb2.AttrValue(type=types_pb2.DT_INT8),
            )
        )
        # TODO: b/294783597 - [Converter][TF-Quantizer] Support quantization for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

      status->status = MessageToBuffer(def, output_graph_def);
    }
    
    void TF_GraphGetOpDef(TF_Graph* graph, const char* op_name,
                          TF_Buffer* output_op_def, TF_Status* status) {
      const OpDef* op_def;
      {
        mutex_lock l(graph->mu);
        status->status = graph->graph.op_registry()->LookUpOpDef(op_name, &op_def);
        if (!status->status.ok()) return;
      }
      status->status = MessageToBuffer(*op_def, output_op_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    public int size(); public boolean contains(Object); public void clear(); } org/codehaus/plexus/util/cli/Commandline.class package org.codehaus.plexus.util.cli; public synchronized class Commandline implements Cloneable { protected static final String OS_NAME = os.name; protected static final String WINDOWS = Windows; private String shell; private java.util.Vector shellArgs; protected String executable; protected java.util.Vector arguments; protected java.util.Vector envVars; private boolean newEnvironment;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) {
    	r1, _, e1 := syscall.Syscall6(procgetsockopt.Addr(), 5, uintptr(s), uintptr(level), uintptr(optname), uintptr(unsafe.Pointer(optval)), uintptr(unsafe.Pointer(optlen)), 0)
    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top