Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for module$ (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    }
    
    void XlaBroadcast::runOnOperation() {
      FuncOp func = getOperation();
      mlir::ModuleOp module = func->getParentOfType<mlir::ModuleOp>();
      if (!module) return signalPassFailure();
      func.walk([&](ClusterOp cluster) {
        if (auto replicate = cluster->getParentOfType<ReplicateOp>()) {
          if (failed(MoveAllBroadcastsToCluster(cluster, replicate, module))) {
            return signalPassFailure();
          }
        }
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      func.func @main() -> () {
        func.return
      }
    })";
    
    // MLIR which should not legalize at all
    static constexpr char kBadMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    	WasmRemoteLoadConversion = env.Register("ISTIO_AGENT_ENABLE_WASM_REMOTE_LOAD_CONVERSION", true,
    		"If enabled, Istio agent will intercept ECDS resource update, downloads Wasm module, "+
    			"and replaces Wasm module remote load with downloaded local module file.").Get()
    
    	PilotJwtPubKeyRefreshInterval = env.Register(
    		"PILOT_JWT_PUB_KEY_REFRESH_INTERVAL",
    		20*time.Minute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. go.mod

    module github.com/minio/minio
    
    go 1.21
    
    require (
    	cloud.google.com/go/storage v1.42.0
    	github.com/Azure/azure-storage-blob-go v0.15.0
    	github.com/Azure/go-autorest/autorest v0.11.29
    	github.com/Azure/go-autorest/autorest/adal v0.9.24
    	github.com/IBM/sarama v1.43.2
    	github.com/alecthomas/participle v0.7.1
    	github.com/bcicen/jstream v1.0.1
    	github.com/beevik/ntp v1.4.3
    	github.com/buger/jsonparser v1.1.1
    	github.com/cespare/xxhash/v2 v2.3.0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	// ConfigPathDir config directory for storing envoy json config files.
    	ConfigPathDir = "./etc/istio/proxy"
    
    	// IstioDataDir is the directory to store binary data such as envoy core dump, profile, and downloaded Wasm modules.
    	IstioDataDir = "/var/lib/istio/data"
    
    	// BinaryPathFilename envoy binary location
    	BinaryPathFilename = "/usr/local/bin/envoy"
    
    	// ServiceClusterName service cluster name used in xDS calls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top