Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for Bridge (0.47 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      mlir::odml::initAllPasses();
      mlir::PassPipelineCLParser passPipeline("", "Add available compiler passes.");
      llvm::cl::ParseCommandLineOptions(argc, argv, "ODML StableHLO Bridge.\n");
    
      auto status = mlir::odml::RunConverter(passPipeline);
    
      if (!status.ok()) {
        LOG(ERROR) << status;
        return status.raw_code();
      }
      return 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    class GetI64Attr<int x>: NativeCodeCall<
      "$_builder.getI64IntegerAttr(" # x # ")">;
    
    // The deprecated validate_indices attribute is NOT verified during
    // canonicalization because it is neither supported in the old bridge
    // nor in the reference TF implementation.
    def GatherToV2 : Pat<
      (TF_GatherOp:$src $params, $indices, $ignored_validate_indices),
      (TF_GatherV2Op:$dest $params, $indices, (TF_ConstOp (GetI32Attr<0>)),
        (GetI64Attr<0>)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/decompose.cc

      func.walk([&table, &builder, &changed](Operation* op) {
        // Only the un-registered ops requires decomposition. The remaining ones
        // either will be constant folded or lowered by the rules defined in the
        // bridge.
        if (op->isRegistered()) {
          return WalkResult::advance();
        }
    
        // Find out the compose function
        auto compose_func_name = GetComposeFuncName(op->getName().getStringRef());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

      (TF_ResourceApplyFtrlV2Op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         (TF_ConstOp (GetScalarOfType<0> $lr_power)), $lr_power, $use_locking, $multiply_linear_by_lr)>;
    
    // TODO(kramm): Remove use_locking. The old bridge doesn't use this, either.
    def DecomposeResourceApplyFtrlV2: Pattern<
      (TF_ResourceApplyFtrlV2Op:$src_op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         $l2_shrinkage, $lr_power, $use_locking, $multiply_linear_by_lr),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir.cc

    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.ArtifactUtils;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.configuration.internal.EnhancedComponentConfigurator;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.h

    XlaCallModuleFlags* GetXlaCallModuleFlags();
    
    MlirCommonFlags* GetMlirCommonFlags();
    
    void ResetJitCompilerFlags();
    
    const JitRtFlags& GetJitRtFlags();
    
    // Returns the effective MLIR bridge rollout state based on the flags and the
    // optional configuration.
    ConfigProto::Experimental::MlirBridgeRollout GetMlirBridgeRolloutState(
        std::optional<const ConfigProto> config_proto);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

    import okhttp3.internal.http.RetryAndFollowUpInterceptor
    import okhttp3.internal.platform.Platform
    import okhttp3.internal.threadName
    import okio.AsyncTimeout
    import okio.Timeout
    
    /**
     * Bridge between OkHttp's application and network layers. This class exposes high-level application
     * layer primitives: connections, requests, responses, and streams.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux_test.go

    				v1.IPv4Protocol: proxyutil.NewDetectLocalByBridgeInterface("eth"),
    				v1.IPv6Protocol: proxyutil.NewDetectLocalByBridgeInterface("eth"),
    			},
    		},
    		{
    			name: "LocalModeBridgeInterface, strange bridge name",
    			config: &proxyconfigapi.KubeProxyConfiguration{
    				DetectLocalMode: proxyconfigapi.LocalModeBridgeInterface,
    				DetectLocal:     proxyconfigapi.DetectLocalConfiguration{BridgeInterface: "1234567890123456789"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile.bzl

            TraceMe::Activity{Start|End} around HLO instructions that can be used by
            Xprof to construct profiler timelines.
          mlir_components: When the value is "None", no components use MLIR. When
            the value is "Bridge", use MLIR to translate GraphDef to HLO.
          deps: a list of deps to include on the build rules for the generated
            library, added to the standard deps if standard_runtime_deps is True.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top