Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for ValueRange (0.15 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/trie.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package norm
    
    type valueRange struct {
    	value  uint16 // header: value:stride
    	lo, hi byte   // header: lo:n
    }
    
    type sparseBlocks struct {
    	values []valueRange
    	offset []uint16
    }
    
    var nfcSparse = sparseBlocks{
    	values: nfcSparseValues[:],
    	offset: nfcSparseOffset[:],
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/trie.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package norm
    
    type valueRange struct {
    	value  uint16 // header: value:stride
    	lo, hi byte   // header: lo:n
    }
    
    type sparseBlocks struct {
    	values []valueRange
    	offset []uint16
    }
    
    var nfcSparse = sparseBlocks{
    	values: nfcSparseValues[:],
    	offset: nfcSparseOffset[:],
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    // This function call op is for invoking the TF subgraphs.
    ValueRange CreateTFPartitionedCallOp(OpBuilder& builder,
                                         const Location location,
                                         const StringRef func_name,
                                         const TypeRange output_types,
                                         const ValueRange args) {
      TF::PartitionedCallOp call_op = builder.create<TF::PartitionedCallOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/xla_rewrite.cc

      }
      builder.setInsertionPoint(cluster_func_op);
      auto xla_launch_op = builder.create<TF::XlaLaunchOp>(
          cluster_func_op.getLoc(), cluster_func_op.getResultTypes(),
          /*constants=*/ValueRange({}), ValueRange(non_resource_args),
          ValueRange(resource_args), cluster_func_op.getFuncAttr());
    
      CopyDeviceAndUnderscoredAttributes(cluster_func_op, xla_launch_op);
      cluster_func_op.replaceAllUsesWith(xla_launch_op.getResults());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/trie.go

    // license that can be found in the LICENSE file.
    
    package idna
    
    // Sparse block handling code.
    
    type valueRange struct {
    	value  uint16 // header: value:stride
    	lo, hi byte   // header: lo:n
    }
    
    type sparseBlocks struct {
    	values []valueRange
    	offset []uint16
    }
    
    var idnaSparse = sparseBlocks{
    	values: idnaSparseValues[:],
    	offset: idnaSparseOffset[:],
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    var sparse = sparseBlocks{
    	values:  sparseValues[:],
    	offsets: sparseOffsets[:],
    }
    
    // Sparse block lookup code.
    
    // valueRange is an entry in a sparse block.
    type valueRange struct {
    	value  uint16
    	lo, hi byte
    }
    
    type sparseBlocks struct {
    	values  []valueRange
    	offsets []uint16
    }
    
    // lookup returns the value from values block n for byte b using binary search.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

          "llvm::ArrayRef<std::pair<ValueRange, Type>>":$replicated_inputs,
          "ValueRange":$packed_inputs, "TypeRange":$replica_output_types)>,
        OpBuilder<(ins "int":$n, "std::optional<DictionaryAttr>":$devices,
          "llvm::ArrayRef<std::pair<ValueRange, Type>>":$replicated_inputs,
          "ValueRange":$packed_inputs, "TypeRange":$replica_output_types)>,
      ];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        island_builder.create<tf_executor::YieldOp>(loc, sub_op->getResults());
      } else {
        island_builder.create<TF::NoOp>(island.getLoc(), TypeRange{}, ValueRange{});
        island_builder.create<tf_executor::YieldOp>(loc, ValueRange{});
      }
      return island;
    }
    
    // A struct that contains the operations in an island that need explicit control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

    #include "mlir/IR/IRMapping.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/ValueRange.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/ValueRange.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top