Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for func_20 (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      mlir::SymbolTable sub_symbol_table(*sub_module);
      auto func_op = sub_symbol_table.lookup<mlir::func::FuncOp>(sig_def_key);
      TF_RET_CHECK(func_op)
          << "Graphdef importer should have created a function named "
          << sig_def_key << ".";
    
      // Use unique SignatureDef key as exported name.
      func_op->setAttr(kTfSavedModelExportedNamesAttr,
                       builder.getStrArrayAttr({sig_def_key}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                   RewriteQuantizedSelectOp, RewriteQuantizedSliceOp,
                   RewriteQuantizedTransposeOp>(&ctx);
    
      if (failed(applyPatternsAndFoldGreedily(func_op, std::move(patterns)))) {
        func_op.emitError() << "Failed to convert stablehlo ops with uniform "
                               "quantized types to tflite ops.";
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (!func) {
        return emitError("'f' attribute refers to an undefined function: ")
               << func_name;
      }
    
      FunctionType func_ty = func.getFunctionType();
      int func_arg_count = func_ty.getNumInputs();
      int arg_count = getArgs().size();
    
      if (arg_count != func_arg_count) {
        return emitError() << "argument count mismatch: 'args' has " << arg_count
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top