Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _find_op (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

              raise ValueError(
                  'Cannot find the output tensor with name %s in the graph.'
                  % tensor_info.name
              ) from exc
    
      return signature_def_map
    
    
    def _find_op(
        graph: ops.Graph, op_name: Optional[str]
    ) -> Optional[ops.Operation]:
      """Finds the operation with `op_name`.
    
      Args:
        graph: The graph to find from.
        op_name: Name of the node.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

        rewriter.replaceOpWithNewOp<TFL::HashtableFindOp>(
            find_op, find_op->getResultTypes(), find_op.getTableHandle(),
            find_op.getKeys(), find_op.getDefaultValue());
        return success();
      }
    };
    
    class LegalizeHashTableImportOpPattern
        : public OpRewritePattern<TF::LookupTableImportV2Op> {
     public:
      using OpRewritePattern<TF::LookupTableImportV2Op>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top