Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for tac_module (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

            "  ).call,\n",
            "    with_gradient=False,\n",
            "    native_serialization=True,\n",
            "    native_serialization_platforms=('cpu',))\n",
            "\n",
            "tf_module = tf.Module()\n",
            "tf_module.f = tf.function(\n",
            "    jax_callable,\n",
            "    autograph=False,\n",
            "    input_signature=[\n",
            "        tf.TensorSpec(input_shape, jnp.float32, 'lhs_operand')\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)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

      mlir::MLIRContext context(registry);
      context.loadAllAvailableDialects();
    
      auto tf_module = mlir::parseSourceString<ModuleOp>(module_op_str, &context);
      if (!tf_module) {
        return absl::UnknownError("Failed to parse MLIR module");
      }
    
      auto mlir_file_path = ExportModule(*tf_module);
      if (!mlir_file_path.ok()) {
        return absl::UnknownError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilder.java

        }
    
        private static void buildDependencies(DefaultIdeaModule tapiModule, IdeaModule ideaModule, boolean offlineDependencyResolution) {
            ideaModule.setOffline(offlineDependencyResolution);
            Set<Dependency> resolved = ideaModule.resolveDependencies();
            List<DefaultIdeaDependency> dependencies = IdeaModuleBuilderSupport.buildDependencies(resolved);
            tapiModule.setDependencies(dependencies);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/target_annotation.cc

      explicit TargetAnnotationPass(llvm::ArrayRef<std::string> device_specs)
          : TacFunctionPass(nullptr) {
        device_specs_flag_ = device_specs;
      }
    
      explicit TargetAnnotationPass(const TacModule* module)
          : TacFunctionPass(module) {}
    
     private:
      void runOnFunction() override;
      void SetTargetAnnotation(Operation* op,
                               llvm::ArrayRef<std::string> device_specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      }
      return absl::OkStatus();
    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
      // Prepare the imported graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/tag_string.go

    	_ = x[TagUnionType-23]
    	_ = x[TagUnspecifiedParameters-24]
    	_ = x[TagVariant-25]
    	_ = x[TagCommonDwarfBlock-26]
    	_ = x[TagCommonInclusion-27]
    	_ = x[TagInheritance-28]
    	_ = x[TagInlinedSubroutine-29]
    	_ = x[TagModule-30]
    	_ = x[TagPtrToMemberType-31]
    	_ = x[TagSetType-32]
    	_ = x[TagSubrangeType-33]
    	_ = x[TagWithStmt-34]
    	_ = x[TagAccessDeclaration-35]
    	_ = x[TagBaseType-36]
    	_ = x[TagCatchDwarfBlock-37]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

            }
        }
    
        private static byte[] addModuleInfo(ModuleInfo moduleInfo) {
            ClassWriter classWriter = new ClassWriter(0);
            classWriter.visit(Opcodes.V9, Opcodes.ACC_MODULE, "module-info", null, null, null);
            ModuleVisitor moduleVisitor = classWriter.visitModule(moduleInfo.getModuleName(), Opcodes.ACC_OPEN, moduleInfo.getModuleVersion());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top