Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for tac_module (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      func::FuncOp func =
          cluster_func->getParentOfType<ModuleOp>().lookupSymbol<func::FuncOp>(
              func_attr.getValue());
    
      std::string txt_module;
      if (failed(EncapsulateFuncAndSerialize(
              module_name.empty() ? "unknown_graph" : module_name.str(), func,
              &txt_module)))
        return nullptr;
    
      auto compilation_status_type =
          RankedTensorType::get({}, builder->getType<TF::StringType>());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        return;
      }
    
      // Print the module to a string before writing to the file.
      std::string txt_module;
      {
        llvm::raw_string_ostream os(txt_module);
        module.print(os);
      }
    
      status = file_writer->Append(txt_module);
      if (!status.ok()) {
        LOG(WARNING) << "error writing to file '" << prefix
                     << "': " << status.message();
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tfr/passes/decompose.cc

    }
    
    }  // namespace
    
    // Creates an instance of the pass to decompose the TF ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDecomposeTFOpsPass(
        std::optional<ModuleOp> tfr_module) {
      return std::make_unique<DecomposeTFOpsPass>(tfr_module);
    }
    
    static PassRegistration<DecomposeTFOpsPass> pass([] {
      return CreateDecomposeTFOpsPass();
    });
    
    }  // namespace TFR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    	} else {
    		// All other imported functions use the normal WASM ABI.
    		// Example:
    		//
    		// 	//go:wasmimport a_module add
    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    		// 	(import "a_module" "add" (func (param i32 i32) (result i32)))
    		abiConfig := AbiForBodylessFuncStackMap(f)
    		abiInfo := abiConfig.ABIAnalyzeFuncType(f.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/const.go

    	TagVariant                Tag = 0x19
    	TagCommonDwarfBlock       Tag = 0x1A
    	TagCommonInclusion        Tag = 0x1B
    	TagInheritance            Tag = 0x1C
    	TagInlinedSubroutine      Tag = 0x1D
    	TagModule                 Tag = 0x1E
    	TagPtrToMemberType        Tag = 0x1F
    	TagSetType                Tag = 0x20
    	TagSubrangeType           Tag = 0x21
    	TagWithStmt               Tag = 0x22
    	TagAccessDeclaration      Tag = 0x23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    std::string MlirModuleToString(mlir::ModuleOp module,
                                   mlir::OpPrintingFlags flags) {
      std::string txt_module;
      {
        llvm::raw_string_ostream os{txt_module};
        module.print(os, flags);
      }
      return txt_module;
    }
    
    std::string MlirModuleToString(mlir::ModuleOp module, bool show_debug_info) {
      mlir::OpPrintingFlags flags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testXlaHostComputeMlir(%arg0: tensor<2xf32>) -> () {
      // expected-error @+1 {{can not be deserialized}}
      "tf._XlaHostComputeMlir"(%arg0) {send_key="", recv_key="", host_mlir_module="bad_module"} : (tensor<2xf32>) -> ()
      func.return
    }
    
    // -----
    
    func.func @testXlaHostComputeMlir(%arg0: tensor<2xf32>) -> () {
      // expected-error @+1 {{'host_mlir_module' does not contain 'host_func' function}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TagInheritance", Const, 0},
    		{"TagInlinedSubroutine", Const, 0},
    		{"TagInterfaceType", Const, 0},
    		{"TagLabel", Const, 0},
    		{"TagLexDwarfBlock", Const, 0},
    		{"TagMember", Const, 0},
    		{"TagModule", Const, 0},
    		{"TagMutableType", Const, 0},
    		{"TagNamelist", Const, 0},
    		{"TagNamelistItem", Const, 0},
    		{"TagNamespace", Const, 0},
    		{"TagPackedType", Const, 0},
    		{"TagPartialUnit", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top