Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kCalledIndexAttrName (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

            }
    
            auto called_index_attr = mlir::dyn_cast_or_null<IntegerAttr>(
                backend_config.get(kCalledIndexAttrName));
            if (!called_index_attr) {
              op->emitOpError()
                  << "is missing attribute '" << kCalledIndexAttrName << "'";
              return WalkResult::interrupt();
            }
            int called_index = called_index_attr.getInt();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

    // i64 attribute `called_index` to the TF function's name.
    constexpr llvm::StringRef kTfBackendConfigAttrName = "tf.backend_config";
    constexpr llvm::StringRef kCalledIndexAttrName = "called_index";
    constexpr llvm::StringRef kCalledFuncAttrName = "called_func";
    
    // Converts `called_func` attributes in custom call ops back to `called_index`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top