Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 546 for begin8_ (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        }
        for (int i = 1; i < dim_size; ++i) {
          mins[i] = mins[0];
          maxs[i] = maxs[0];
        }
      } else {
        int64_t flatten_index = 0;
        auto begin = values.begin();
        auto end = values.end();
        for (auto it = begin; it != end; ++it, ++flatten_index) {
          const double ele_value = FloatAttr::getValueAsDouble(*it);
          const int slice_index = flatten_index / slice_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. src/database/sql/driver/driver.go

    	//
    	// Drivers must ensure all network calls made by Close
    	// do not block indefinitely (e.g. apply a timeout).
    	Close() error
    
    	// Begin starts and returns a new transaction.
    	//
    	// Deprecated: Drivers should implement ConnBeginTx instead (or additionally).
    	Begin() (Tx, error)
    }
    
    // ConnPrepareContext enhances the [Conn] interface with context.
    type ConnPrepareContext interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. src/path/filepath/symlink_windows.go

    //   - UNC paths                              (e.g \\server\share\foo\bar)
    //   - absolute paths                         (e.g C:\foo\bar)
    //   - relative paths begin with drive letter (e.g C:foo\bar, C:..\foo\bar, C:.., C:.)
    //   - relative paths begin with '\'          (e.g \foo\bar)
    //   - relative paths begin without '\'       (e.g foo\bar, ..\foo\bar, .., .)
    //
    // The returned normalized path will be in the same form (of 5 listed above) as the input path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/encoding/pem/example_test.go

    // license that can be found in the LICENSE file.
    
    package pem_test
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"log"
    	"os"
    )
    
    func ExampleDecode() {
    	var pubPEMData = []byte(`
    -----BEGIN PUBLIC KEY-----
    MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlRuRnThUjU8/prwYxbty
    WPT9pURI3lbsKMiB6Fn/VHOKE13p4D8xgOCADpdRagdT6n4etr9atzDKUSvpMtR3
    CP5noNc97WiNCggBjVWhs7szEe8ugyqF23XwpHQ6uV1LKH50m92MbOWfCtjU9p/x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 03:08:55 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

        reader.Close();
        TF_ASSERT_OK(read_metadata.status());
      }
      ChunkMetadata chunk_metadata = read_metadata.value();
    
      std::vector<ChunkInfo> chunks_info = std::vector<ChunkInfo>(
          chunk_metadata.chunks().begin(), chunk_metadata.chunks().end());
    
      FieldIndex field_one_field_tag;
      field_one_field_tag.set_field(1);
      FieldIndex repeated_field_field_tag;
      repeated_field_field_tag.set_field(2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpView::OpView(OpSpec op)
        : op_(op),
          input_args_(op_.Inputs().begin(), op_.Inputs().end()),
          output_args_(op_.Outputs().begin(), op_.Outputs().end()),
          argument_attrs_(op_.Attributes().begin(), op_.Attributes().end()) {
      // Initialize function arguments
      all_arguments_.push_back(OpArgumentView("AbstractContext*", "ctx"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/renderers/guard_renderer.cc

                                      context_.cpp_config.unit + "_ops.h");
      string with_underscores(self_path);
      std::replace(with_underscores.begin(), with_underscores.end(), '/', '_');
      std::replace(with_underscores.begin(), with_underscores.end(), '.', '_');
      guard_ = toUpperSnake(with_underscores) + "_";
    }
    
    void GuardRenderer::Open() {
      CodeLine("#ifndef $0", guard_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.cc

        const std::string& group_id = id_pair[0];
        if (group_id[0] != 'p' && group_id[0] != 'r') return failure();
        if (!std::all_of(std::next(group_id.begin()), group_id.end(), is_digit)) {
          return failure();
        }
        const std::string& branch_id = id_pair[1];
        if (!std::all_of(branch_id.begin(), branch_id.end(), is_digit)) {
          return failure();
        }
        id_pairs.push_back(std::make_pair(id_pair[0], id_pair[1]));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/net/http/internal/testcert/testcert.go

    // generated from src/crypto/tls:
    // go run generate_cert.go  --rsa-bits 2048 --host 127.0.0.1,::1,example.com --ca --start-date "Jan 1 00:00:00 1970" --duration=1000000h
    var LocalhostCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDOTCCAiGgAwIBAgIQSRJrEpBGFc7tNb1fb5pKFzANBgkqhkiG9w0BAQsFADAS
    MRAwDgYDVQQKEwdBY21lIENvMCAXDTcwMDEwMTAwMDAwMFoYDzIwODQwMTI5MTYw
    MDAwWjASMRAwDgYDVQQKEwdBY21lIENvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 08 00:24:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

        if (hist_freq_[real_size - 1] != 0) break;
      }
    
      hist_stats.set_lower_bound(lower_bound_);
      hist_stats.set_bin_width(bin_width_);
      hist_stats.mutable_hist_freq()->Assign(hist_freq_.begin(),
                                             hist_freq_.begin() + real_size);
    
      CalibrationStatistics statistics;
      statistics.mutable_histogram_statistics()->CopyFrom(hist_stats);
    
      return statistics;
    }
    
    std::pair<int32_t, int32_t>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top