Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for reflectively (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      // `tensor_shape`. `tfl_pad_values` should be formatted as `[[low_0, high_0],
      // [low_1, high_1], ..., [low_n, high_n]]`, where `low_x` and `high_x` are the
      // low and high paddings for the x-th dimension, respectively.
      SmallVector<int64_t> InferPaddedTensorShape(
          const ArrayRef<int64_t> tensor_shape,
          const ArrayRef<int32_t> tfl_pad_values) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		include path must be in the same directory as the Go package they are
    //		included from, and overlays will not appear when binaries and tests are
    //		run through go run and go test respectively.
    //	-pgo file
    //		specify the file path of a profile for profile-guided optimization (PGO).
    //		When the special name "auto" is specified, for each main package in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          feature_dim != bias_len) {
        return op.emitOpError()
               << "requires channel dimension and feature dimension to match; "
                  "found "
               << feature_dim << " and " << bias_len << ", respectively";
      }
      return success();
    }
    
    LogicalResult BiasAddOp::UpdateDataFormat(StringRef data_format) {
      return ::mlir::TF::UpdateDataFormat(data_format, this);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// Readers that cannot take the lock may (carefully!) use the atomic
    	// variables below.
    	allglock mutex
    	allgs    []*g
    
    	// allglen and allgptr are atomic variables that contain len(allgs) and
    	// &allgs[0] respectively. Proper ordering depends on totally-ordered
    	// loads and stores. Writes are protected by allglock.
    	//
    	// allgptr is updated before allglen. Readers should read allglen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        input in that dimension.
    
        Both paddings[D, 0] and paddings[D, 1] must be no greater than
        input.dim_size(D) (or input.dim_size(D) - 1)
        if copy_border is true (if false, respectively).
    
        The padded size of each dimension D of the output is:
    
        paddings(D, 0) + input.dim_size(D) + paddings(D, 1)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	_   incomparable
    	n   int
    	err error
    	b   byte // byte read, if n == 1
    }
    
    // connReader is the io.Reader wrapper used by *conn. It combines a
    // selectively-activated io.LimitedReader (to bound request header
    // read sizes) with support for selectively keeping an io.Reader.Read
    // call blocked in a background goroutine to wait for activity and
    // trigger a CloseNotifier channel.
    type connReader struct {
    	conn *conn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>Distribution information for a project that enables deployment of the site
                and artifacts to remote web servers and repositories respectively.</description>
              <association>
                <type>DistributionManagement</type>
              </association>
            </field>
            <field xdoc.separator="blank">
              <name>properties</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      absl::flat_hash_map<std::pair<std::vector<int32_t>, std::vector<int32_t>>,
                          std::pair<uint64_t, uint64_t>>
          custom_op_idx_map_;
    
      // Points to TensorFlow and TFLite dialects, respectively. nullptr if the
      // dialect is not registered.
      const Dialect* tf_dialect_;
      const Dialect* tfl_dialect_;
      const Dialect* vhlo_dialect_;
    
      // The failed ops during legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	kl.probeManager.RemovePod(pod)
    
    	// Guard against consistency issues in KillPod implementations by checking that there are no
    	// running containers. This method is invoked infrequently so this is effectively free and can
    	// catch race conditions introduced by callers updating pod status out of order.
    	// TODO: have KillPod return the terminal status of stopped containers and write that into the
    	//  cache immediately
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        'UniformQuantizedDotHybrid',
    )
    
    _DebuggerConfig = stablehlo_quant_config_pb2.DebuggerConfig
    
    # Lists of ops whose channel dimension should be changed if per_channel
    # quantization is enabled. Respectively refers to (scale, zero_point).
    _SUFFIXES = ('/filter1', '/filter2')
    _PER_CHANNEL_OP_NAMES = (
        f'{op}{suffix}'
        for op, suffix in itertools.product(_PER_CHANNEL_QUANTIZED_OPS, _SUFFIXES)
    )
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top