Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for target_spec_ (0.24 sec)

  1. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

    #define DEBUG_TYPE "quantization-context"
    
    namespace mlir {
    namespace quant {
    
    QuantizeContext::QuantizeContext(func::FuncOp func, const DeviceTarget &spec)
        : func_(func), target_spec_(spec) {
      llvm::DenseMap<Value, int> value_to_state;
      func.walk([&](quantfork::QuantizeRegionOp op) {
        for (int i = 0, e = op.getNumOperands(); i != e; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // results and arguments.
        llvm::DenseMap<OpValue, int> operand_states_;
        llvm::DenseMap<OpValue, int> result_states_;
      };
    
      func::FuncOp func_;
    
      DeviceTarget target_spec_;
    
      StatesManager states_manager_;
    };
    
    }  // namespace quant
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaExecSpec.java

        }
    
        public void copyTo(JavaExecSpec targetSpec) {
            // JavaExecSpec
            targetSpec.setArgs(getArgs());
            targetSpec.getArgumentProviders().addAll(getArgumentProviders());
            targetSpec.getMainClass().set(getMainClass());
            targetSpec.getMainModule().set(getMainModule());
            targetSpec.getModularity().getInferModulePath().set(getModularity().getInferModulePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecSpec.java

            super(resolver);
        }
    
        public void copyTo(ExecSpec targetSpec) {
            // Fork options
            super.copyTo(targetSpec);
            // BaseExecSpec
            copyBaseExecSpecTo(this, targetSpec);
            // ExecSpec
            targetSpec.setArgs(getArgs());
            targetSpec.getArgumentProviders().addAll(getArgumentProviders());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

            "            np.float32\n",
            "        )\n",
            "    }\n",
            "converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir)\n",
            "converter.target_spec.supported_ops = [\n",
            "    tf.lite.OpsSet.SELECT_TF_OPS,  # enable TensorFlow ops.\n",
            "    tf.lite.OpsSet.TFLITE_BUILTINS,  # enable TFL ops.\n",
            "]\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    int main(int argc, char* argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
      LOG(INFO) << "odml_to_stablehlo is being deprecated, please use "
                   "TFlite converter with flag: "
                   "converter.target_spec.supported_ops = "
                   "[tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS] ";
    
      mlir::odml::initAllPasses();
      mlir::PassPipelineCLParser passPipeline("", "Add available compiler passes.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        srcs = [
            "odml_to_stablehlo.cc",
        ],
        copts = ["-O3"],
        deprecation = "odml_to_stablehlo is being deprecated, please use TFlite converter with flag: " +
                      "converter.target_spec.supported_ops = " +
                      " [tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS]",
        deps = [
            ":check_accepted_ops_pass",
            ":op_stat_pass",
            ":stablehlo_util",
            ":transforms",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            public void all(boolean testTaskShouldRunAfter) {
                targets.add(new TargetSpec(null, "all", builder, testTaskShouldRunAfter));
            }
        }
    
        private static class TargetSpec extends BlockStatement implements BlockBody {
            private final BuildScriptBuilder builder;
            private final String name;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "ops and disabling `_experimental_lower_tensor_list_ops` flag in the "
              "TFLite converter object. For example, "
              "converter.target_spec.supported_ops = "
              "[tf.lite.OpsSet.TFLITE_BUILTINS, tf.lite.OpsSet.SELECT_TF_OPS]\\n "
              "converter._experimental_lower_tensor_list_ops = False");
          signalPassFailure();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. RELEASE.md

        *   Enabled post training with calibrations for models that require user
            provided TensorFlow Lite custom op libraries via
            `converter.target_spec._experimental_custom_op_registerers`. used in
            Python Interpreter API.
    
    *   TF Core:
    
        *   Corrected higher-order gradients of control flow constructs (`tf.cond`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top