Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsBool (0.09 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

      std::vector<mlir::Attribute> mlir_vector;
    
      for (int i = 0; i < flatbuffer_vector.size(); ++i) {
        auto value = flatbuffer_vector[i];
    
        if (value.IsBool()) {
          mlir_vector.push_back(BuildVhloBooleanV1Attr(value.AsBool(), builder));
        } else if (value.IsString()) {
          mlir_vector.push_back(
              BuildVhloStringV1Attr(value.AsString().str(), builder));
        } else if (value.IsInt()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                addListener(fingerprintWriter)
                // Continue with the current spool file, rather than starting a new one
                return Writing(fingerprintWriter, this.buildScopedSpoolFile, this.projectScopedSpoolFile)
            }
    
            override fun pause(): WritingState {
                return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. build/root/Makefile

        $(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
        $(warning ***** $(shell date))
    else
        # If we're not debugging the Makefile, don't echo recipes.
        MAKEFLAGS += -s
    endif
    
    
    # Old-skool build tools.
    #
    # Commonly used targets (see each target for more information):
    #   all: Build code.
    #   test: Run tests.
    #   clean: Clean up.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top