Home
last modified time | relevance | path

Searched refs:value_to_store (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp1249 Value* value_to_store = VEXTRACT(unwrap(value), C(lane)); in swr_tcs_llvm_store_output() local
1253 …lp_build_print_value(gallivm, "[TCS OUT][PATCH] per-patch value to store: ", wrap(value_to_store)); in swr_tcs_llvm_store_output()
1256 value_to_store = BITCAST(value_to_store, mFP32Ty); in swr_tcs_llvm_store_output()
1260 value_to_store = SELECT(vMask, value_to_store, originalVal); in swr_tcs_llvm_store_output()
1265 … lp_build_print_value(gallivm, "[TCS OUT][PATCH] selected value to store: ", wrap(value_to_store)); in swr_tcs_llvm_store_output()
1268 STOREV(value_to_store, attr, {C(0), unwrap(swizzle_index)}); in swr_tcs_llvm_store_output()
1270 lp_build_print_value(gallivm, "[TCS OUT][PATCH] stored value: ", wrap(value_to_store)); in swr_tcs_llvm_store_output()
1273 Value* value_to_store = VEXTRACT(unwrap(value), C(lane)); in swr_tcs_llvm_store_output() local
1283 lp_build_print_value(gallivm, "[TCS OUT][VTX] value_to_store: ", wrap(value_to_store)); in swr_tcs_llvm_store_output()
1291 value_to_store = BITCAST(value_to_store, mFP32Ty); in swr_tcs_llvm_store_output()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.h381 const ShardedVector& value_to_store,
Dir_emitter.cc1610 llvm::Value* store_address, const std::vector<llvm::Value*>& value_to_store, in EmitShardedVectorStore() argument
1612 for (int i = 0; i < value_to_store.size(); i++) { in EmitShardedVectorStore()
1615 llvm::PointerType::getUnqual(value_to_store[i]->getType())); in EmitShardedVectorStore()
1618 AlignedStore(value_to_store[i], store_address_typed, alignment); in EmitShardedVectorStore()
1622 if (i != (value_to_store.size() - 1)) { in EmitShardedVectorStore()
1623 store_address = ConstInBoundsGEP1_32(value_to_store[i]->getType(), in EmitShardedVectorStore()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h3877 inline void StoreValue(int32x4x4_t value_to_store, int8_t* output) { in StoreValue() argument
3878 const int16x8_t result_1 = vcombine_s16(vqmovn_s32(value_to_store.val[1]), in StoreValue()
3879 vqmovn_s32(value_to_store.val[0])); in StoreValue()
3880 const int16x8_t result_2 = vcombine_s16(vqmovn_s32(value_to_store.val[3]), in StoreValue()
3881 vqmovn_s32(value_to_store.val[2])); in StoreValue()
3889 inline void StoreValue(int32x4x4_t value_to_store, uint8_t* output) { in StoreValue() argument
3891 vcombine_u16(vqmovn_u32(vreinterpretq_u32_s32(value_to_store.val[1])), in StoreValue()
3892 vqmovn_u32(vreinterpretq_u32_s32(value_to_store.val[0]))); in StoreValue()
3894 vcombine_u16(vqmovn_u32(vreinterpretq_u32_s32(value_to_store.val[3])), in StoreValue()
3895 vqmovn_u32(vreinterpretq_u32_s32(value_to_store.val[2]))); in StoreValue()