Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 596 for region (0.42 sec)

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

      // regions attached to the op's in the block.
      if (metadata_map.empty()) {
        for (Operation& op : *block) {
          for (Region& region : op.getRegions()) {
            if (!llvm::hasSingleElement(region))
              return op.emitOpError("Expected single block region");
            if (failed(FormClustersInBlock(&region.front(), side_effect_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir_wrapper/builders.cc

                                          llvm::ArrayRef<mlir::Type>(outputs));
               });
      py::class_<mlir::OpBuilder>(m, "OpBuilder")
          .def(py::init<mlir::MLIRContext*>())
          .def(py::init<mlir::Region&>())
          .def(py::init<mlir::Operation*>())
          .def(py::init<mlir::Block*, mlir::Block::iterator>())
          .def("getUnknownLoc", &mlir::OpBuilder::getUnknownLoc)
          .def("setInsertionPoint",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 08:44:55 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    	return newOption("xds_type", value)
    }
    
    func Region(value string) Instance {
    	return newOptionOrSkipIfZero("region", value)
    }
    
    func Zone(value string) Instance {
    	return newOptionOrSkipIfZero("zone", value)
    }
    
    func SubZone(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    		// A "shadowed address" is a pointer, offset, and size describing a memory region that
    		// is known to be written. We keep track of shadowed addresses in the shadowed map,
    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	// Contention profile options
    	flagTotalDelay := flag.Bool("total_delay", false, "Display total delay at each region")
    	flagContentions := flag.Bool("contentions", false, "Display number of delays at each region")
    	flagMeanDelay := flag.Bool("mean_delay", false, "Display mean delay at each region")
    	flagTools := flag.String("tools", os.Getenv("PPROF_TOOLS"), "Path for object tool pathnames")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/gcp_test.go

    			e := NewGCP()
    			got := e.Locality()
    			assert.Equal(t, got.Zone, tt.want["Zone"])
    			assert.Equal(t, got.Region, tt.want["Region"])
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      const uint64_t length;
    } GCSMemoryRegion;
    
    void Cleanup(TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<GCSMemoryRegion*>(region->plugin_memory_region);
      plugin_memory_free(const_cast<void*>(r->address));
      delete r;
    }
    
    const void* Data(const TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<GCSMemoryRegion*>(region->plugin_memory_region);
      return r->address;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  8. src/runtime/runtime_mmap_test.go

    	}
    }
    
    func TestPhysPageSize(t *testing.T) {
    	// Mmap fails if the address is not page aligned, so we can
    	// use this to test if the page size is the true page size.
    	ps := runtime.GetPhysPageSize()
    
    	// Get a region of memory to play with. This should be page-aligned.
    	b, err := runtime.Mmap(nil, 2*ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0)
    	if err != 0 {
    		t.Fatalf("Mmap: %v", err)
    	}
    
    	if runtime.GOOS == "aix" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_inline_device_ops.cc

    namespace mlir {
    
    namespace {
    
    #define GEN_PASS_DEF_XLAINLINEDEVICEOPSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.h.inc"
    
    // XlaInlineDeviceOps Pass will inline cluster op based in the parent region.
    struct XlaInlineDeviceOpsPass
        : public impl::XlaInlineDeviceOpsPassBase<XlaInlineDeviceOpsPass> {
      void runOnOperation() override;
    };
    
    void InlineDeviceOp(tf_device::ClusterOp cluster_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 00:59:46 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyConstraintFactory.java

            if (dependency instanceof DefaultDependencyConstraint) {
                ((DefaultDependencyConstraint) dependency).setAttributesFactory(attributesFactory);
            }
        }
    
        // region DependencyConstraintFactory methods
    
        @Override
        public DependencyConstraint create(CharSequence dependencyNotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top