Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mutable_args (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

        }
        if (replicate_args.empty()) continue;
        // Now set the enable_xla_sharding field in the metadata to inform the
        // compile op.
        auto metadata_arg = metadata.mutable_args(it->second);
        metadata_arg->set_enable_xla_sharding(
            ::tensorflow::tpu::TPUCompileMetadataProto_Arg::ALLOWED);
        mapping.emplace_back(it->second, std::move(replicate_args));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

            if (!IsSupportedInputOp(input_op, resource_alias_analysis)) continue;
            HandleInput(input, execute_arg_index, execute, execute_launch,
                        compile_launch);
          }
    
          metadata.mutable_args(input_mapping[execute_arg_index])
              ->set_unrestricted_layout(true);
          metadata_updated = true;
        }
      }
    
      if (metadata_updated)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-RequestCommon.kt

        if (tags.isNotEmpty()) {
          (tags as MutableMap).remove(type)
        }
      } else {
        val mutableTags: MutableMap<KClass<*>, Any> =
          when {
            tags.isEmpty() -> mutableMapOf<KClass<*>, Any>().also { tags = it }
            else -> tags as MutableMap<KClass<*>, Any>
          }
        mutableTags[type] = tag
      }
    }
    
    fun Request.commonToString(): String =
      buildString {
        append("Request{method=")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top