Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 189 for convlit (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // The upper bits of the smaller than register values is undefined. Take advantage of that.
    (AND <t> x:(MOVDconst [m]) n) && t.Size() <= 2 => (ANDconst [int64(int16(m))] n)
    
    // Convert simple bit masks to an equivalent rldic[lr] if possible.
    (AND x:(MOVDconst [m]) n) && isPPC64ValidShiftMask(m) => (RLDICL [encodePPC64RotateMask(0,m,64)] n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tpu_model_to_cpu.cc

      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
        // the textual format (on the commandline for example).
        return "quant-convert-tpu-model-to-cpu";
      }
      StringRef getDescription() const final {
        return "Convert TPU models to CPU by rewriting TPU related operations.";
      }
    
      void runOnOperation() override;
    };
    
    class RemoveTpuOp : public RewritePattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

         * When method return type should be boxed (e.g., kotlin.Int to Ljava/lang/Integer;)
         */
        RETURN_TYPE_BOXED,
    
        /**
         * Optimal mode to convert the return type of declarations if it's part of signature.
         */
        RETURN_TYPE,
    
        /**
         * Optimal mode to convert the type of value parameter if it's part of signature.
         */
        VALUE_PARAMETER,
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                            else -> errorWithAttachment("Can't convert ${value::class} to the Analysis API") {
                                withEntry("value", value) { value.toString() }
                            }
                        },
                        builder.token
                    )
                )
                else -> errorWithAttachment("Can't convert ${returnsEffect::class} to the Analysis API")  {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

            when:
            fails 'checkDeps'
    
            then:
            failure.assertHasCause """Conflict found for the following module:
      - org:foo between versions 1.1 and 1.0"""
            failure.assertHasResolutions("Run with :dependencyInsight --configuration conf " +
                "--dependency org:foo to get more insight on how to solve the conflict.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

        // This is the argument used to refer to the pass in the textual format (on
        // the commandline for example).
        return "quant-convert-tf-custom-aggregator-op-to-quant-stats";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Convert tf.CustomAggregator op to quant.Stats";
      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

            event.prompt == "question? [yes, no] " // trailing space
        }
    
        def "accepts valid input"() {
            def event = new YesNoQuestionPromptEvent(123, "question?")
    
            expect:
            def result = event.convert(input)
            result.response == expected
            result.newPrompt == null
    
            where:
            input   | expected
            "yes"   | true
            " yes " | true
            "no"    | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    #include "tsl/platform/statusor.h"
    
    #define DEBUG_TYPE "run-tf-graph-optimization"
    
    namespace tensorflow {
    namespace {
    // Creates a pass to convert MLIR to Graph, run user-specified Graph
    // Optimization Passes and convert back to MLIR.
    // Constraints: This pass expects that all operations in the MLIR module either
    // belong to 'tf' or '_tf' dialect. The output is in '_tf' dialect.
    class GraphOptPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

        outConvertedType = converted.getType();
        return converted;
      }
      // Nothing else matched: try to convert a primitive.
      return convertPrimitiveValueAttr(realValue, quantizedElementType, converter,
                                       outConvertedType);
    }
    
    /// Convert an attribute from a type based on
    /// quantizedElementType.getExpressedType() to one based on
    /// quantizedElementType.getStorageType().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h"
    #include "tensorflow/python/lib/core/pybind11_lib.h"
    
    namespace py = pybind11;
    
    PYBIND11_MODULE(_pywrap_converter_api, m) {
      m.def(
          "Convert",
          [](py::object model_flags_proto_txt_raw,
             py::object toco_flags_proto_txt_raw, py::object input_contents_txt_raw,
             bool extended_return, py::object debug_info_txt_raw,
             bool enable_mlir_converter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top