Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fmtStr (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                           << func_arg_count;
      }
    
      return success();
    }
    
    void LegacyCallOp::setCalleeFromCallable(mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    template <typename CallOpClass>
    static void SetPartitionCalleeFromCallable(CallOpClass op,
                                               mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = op.getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return op.setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top