Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for hashtable (0.11 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

      // CHECK-NOT: tf.HashTableV2
      // CHECK-NOT: tf.LookupTableSizeV2
      // CHECK: [[v:%.*]]:2 = "tf._TfrtGetResource"() <{container = ["", ""], indices = [0, 1], shared_name = [{{.*}}, {{.*}}]}> {device = "/job:localhost/replica:0/task:0/device:CPU:0"}
      // CHECK: [[r:%.*]] = "tf.LookupTableFindV2"([[v]]#[[handle_idx]]
      // CHECK: return [[v]]#[[size_idx]], [[r]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. migrator/migrator.go

    			return tx.Exec("DROP TABLE IF EXISTS ?", m.CurrentTable(stmt)).Error
    		}); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // HasTable returns table exists or not for value, value could be a struct or string
    func (m Migrator) HasTable(value interface{}) bool {
    	var count int64
    
    	m.RunWithValue(value, func(stmt *gorm.Statement) error {
    		currentDatabase := m.DB.Migrator().CurrentDatabase()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_ppc64le.s

    	SUB	R8,R9,R8
    
    	// The last iteration is reduced in a separate step
    	ADD	$-1,R7
    	MOVD	R7,CTR
    
    	// Determine which constant table (depends on poly)
    	CMP	R14,$1
    	BNE	castTable
    	MOVD	$·IEEEConst(SB),R3
    	BR	startConst
    castTable:
    	MOVD	$·CastConst(SB),R3
    
    startConst:
    	ADD	R3,R8,R3	// starting point in constants table
    
    	VXOR	V0,V0,V0	// clear the V regs
    	VXOR	V1,V1,V1
    	VXOR	V2,V2,V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

      let constructor = "CreateInsertCallOnceOpFromSessionInitializerPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def LegalizeHashTablesPass : Pass<"tfl-legalize-hashtables-tf", "mlir::ModuleOp"> {
      let summary = "Legalize TensorFlow hash tables to TensorFlow Lite dialect.";
      let constructor = "CreateLegalizeHashTablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/objfile.go

    //     consistent. For now, we require we know the current package
    //     path so we can always expand symbol names. (Otherwise,
    //     symbols with relocations are not considered hashable.)
    //
    // For now, we assume there is no circular dependencies among
    // hashed symbols.
    func (w *writer) contentHash(s *LSym) goobj.HashType {
    	h := notsha256.New()
    	var tmp [14]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top