Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 2GB (0.17 sec)

  1. test/fixedbugs/issue4348.go

    // license that can be found in the LICENSE file.
    
    // Issue 4348. After switch to 64-bit ints the compiler generates
    // illegal instructions when using large array bounds or indexes.
    
    // Skip. We reject symbols larger that 2GB (Issue #9862).
    
    package main
    
    // 1<<32 on a 64-bit machine, 1 otherwise.
    const LARGE = ^uint(0)>>32 + 1
    
    func A() int {
    	var a []int
    	return a[LARGE]
    }
    
    var b [LARGE]int
    
    func B(i int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:51:03 UTC 2020
    - 584 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/image_format/README.md

    `experimental_image_format` option:
    
    ```
    tf.savedmodel.save(
        model, path,
        options=tf.saved_model.SaveOptions(experimental_image_format=True)
    )
    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    automatically save with the new format (`.cpb` instead of `.pb`).
    
    <!-- **Compatibility** -->
    
    The official TF APIs (TF1/TF2 python or C++ loading) have already been
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
  3. test/fixedbugs/issue25507.go

    // Argument/return areas are part of the parent frame, not the frame itself,
    // so they need to be handled separately.
    
    package main
    
    // >1GB to trigger failure, <2GB to work on 32-bit platforms.
    type large struct {
    	b [1500000000]byte
    }
    
    func (x large) f1() int { // GC_ERROR "stack frame too large"
    	return 5
    }
    
    func f2(x large) int { // GC_ERROR "stack frame too large"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 754 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/image_format/internal_api.h

    #if !IS_OSS
    absl::StatusOr<std::tuple<absl::Cord, bool>> WriteSavedModelToCord(
        SavedModel* saved_model_proto);
    #endif
    
    // See above. The `debug_max_size` argument can be used to the maximum size to
    // less than 2GB for testing purposes.
    absl::Status WriteSavedModel(SavedModel* saved_model_proto,
                                 const std::string& file_prefix,
                                 int debug_max_size);
    
    }  // namespace image_format
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top