Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for Bridge (0.23 sec)

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

        if (VLOG_IS_ON(2)) {
          tensorflow::tf2xla::internal::EnablePassIRPrinting(bridge,
                                                             kBridgeComponent);
        }
      }
      LogicalResult result = bridge.run(module);
      (void)result;
      if (enable_logging || VLOG_IS_ON(1))
        tensorflow::DumpMlirOpToFile(kStandardPipelineAfter, module, "", &bridge);
      return diag_handler.ConsumeStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 17:16:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/bridge.conf

    {
      "cniVersion": "0.4.0",
      "name": "dbnet",
      "type": "bridge",
      "bridge": "cni0",
      "ipam": {
        "type": "host-local",
        "subnet": "10.1.0.0/16",
        "gateway": "10.1.0.1"
      },
      "dns": {
        "nameservers": [ "10.1.0.1" ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 235 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    Mason Chang <******@****.***> 1698187099 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/bridge.conf.golden

    {
      "cniVersion": "0.3.1",
      "name": "k8s-pod-network",
      "plugins": [
        {
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "name": "dbnet",
          "type": "bridge"
        },
        {
          "ambient_enabled": false,
          "cni_event_address": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 716 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

            "hook registration library.");
      }
    
      PassManager bridge(module.getContext());
      bridge.enableVerifier();
      ::tensorflow::applyTensorflowAndCLOptions(bridge);
    
      // Populate a passmanager with the list of passes that implement the bridge.
      pipeline_builder(bridge);
    
      mlir::StatusScopedDiagnosticHandler diag_handler(
          module.getContext(), /*propagate=*/false,
          /*filter_stack=*/!VLOG_IS_ON(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/enable_mlir_bridge.md

    # Enable MLIR-Based new TPU Bridge
    
    **MLIR-Based new TPU Bridge is an experimental feature, tread lightly.**
    
    ## For TF 1.x-Based Models
    
    In tf.ConfigProto.Experimental, there is a knob controlling whether the new TPU
    Bridge is enabled or not. You can set it by using the following example code:
    
    ```
    session_config = tf.ConfigProto(
      ......
      experimental=tf.ConfigProto.Experimental(
        enable_mlir_bridge=True,
      ),
      ......
    )
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 13 23:12:13 UTC 2020
    - 989 bytes
    - Viewed (0)
  7. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin:  true,
    			specifiedConfName: "bridge.conflist",
    			expectedConfName:  "bridge.conf",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified delayed CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "bridge.conf",
    			delayedConfName:   "bridge.conf",
    			expectedConfName:  "bridge.conf",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/xcode/internal/XcodePropertyAdapterTest.groovy

            XcodePropertyAdapter.adapterCommandLine == [
                    '-Porg.gradle.internal.xcode.bridge.ACTION="${ACTION}"',
                    '-Porg.gradle.internal.xcode.bridge.PRODUCT_NAME="${PRODUCT_NAME}"',
                    '-Porg.gradle.internal.xcode.bridge.CONFIGURATION="${CONFIGURATION}"',
                    '-Porg.gradle.internal.xcode.bridge.BUILT_PRODUCTS_DIR="${BUILT_PRODUCTS_DIR}"',
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

    enum class MlirBridgeRolloutPolicy {
      // The MLIR bridge is explicitly disabled by the user and must not be run.
      kDisabledByUser = 0,
      // The MLIR bridge is explicitly enabled by the user and must be run. If the
      // MLIR bridge errors, the fallback path should NOT be used.
      kEnabledByUser,
      // The bridge was not explicitly enabled or disabled by the user. Based on the
      // features in the model, the MLIR bridge should not be run.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

            "hook registration library.");
      }
    
      PassManager bridge(module.getContext());
      bridge.enableVerifier();
      ::tensorflow::applyTensorflowAndCLOptions(bridge);
    
      // Populate a passmanager with the list of passes that implement the bridge.
      pipeline_builder(bridge);
    
      mlir::StatusScopedDiagnosticHandler diag_handler(
          module.getContext(), /*propagate=*/false,
          /*filter_stack=*/!VLOG_IS_ON(1));
    
      if (VLOG_IS_ON(1) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top