Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for replaceAllUsesExcept (0.34 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        }
    
        for (auto replace_pair : replace_map) {
          Value result = replace_pair.first;
          quantfork::StorageCastOp scast_op = replace_pair.second;
          result.replaceAllUsesExcept(scast_op, scast_op);
        }
    
        // Make a copy of the quantized function.
        auto module = call_op->getParentOfType<ModuleOp>();
        SymbolTable symbol_table(module);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          auto new_global_iter_id = builder.create<TF::AddV2Op>(
              loc, global_iter_id_op->getResultTypes(),
              global_iter_id_op->getResult(0), offset->getResult(0));
          global_iter_id_op->getResult(0).replaceAllUsesExcept(
              new_global_iter_id->getResult(0), new_global_iter_id);
          std::vector<std::string> attr_names = {
              TF::kReplicationInfoAttr.str(), "_xla_compile_device_type",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top